Add index signature to 'CoreObjectArguments' in 'ember'.

This commit is contained in:
Daniel Rosenwasser
2015-08-11 15:44:37 -07:00
parent fc46cd7ac0
commit c892b43ca4

4
ember/ember.d.ts vendored
View File

@@ -349,6 +349,8 @@ interface CoreObjectArguments {
Override to implement teardown.
**/
willDestroy?: Function;
[propName: string]: any;
}
interface EnumerableConfigurationOptions {
@@ -998,7 +1000,7 @@ declare module Ember {
@static
@param {Object} [args] - Object containing values to use within the new class
**/
static extend<T>(args ?: CoreObjectArguments): T;
static extend<T>(args?: CoreObjectArguments): T;
/**
Creates a new subclass.
@method extend