fix ember/ember.d.ts

This commit is contained in:
vvakame
2015-07-19 16:41:54 +09:00
parent c9dbef81a3
commit 4536b5371f

2
ember/ember.d.ts vendored
View File

@@ -1420,7 +1420,7 @@ declare module Ember {
Creates an instance of the class.
@param arguments A hash containing values with which to initialize the newly instantiated object.
**/
static create<T extends Mixin>(...arguments: CoreObjectArguments[]): T;
static create<T extends Mixin>(...args: CoreObjectArguments[]): T;
detect(obj: any): boolean;
reopen<T extends Mixin>(args?: {}): T;
}