type of argument list elements for Mixin.create

This commit is contained in:
Mateusz Warkocki
2015-06-18 19:01:33 +02:00
parent 539eb90ace
commit 4185303285
+2 -2
View File
@@ -1418,9 +1418,9 @@ declare module Ember {
apply(obj: any): any;
/**
Creates an instance of the class.
@param args A hash containing values with which to initialize the newly instantiated object.
@param arguments A hash containing values with which to initialize the newly instantiated object.
**/
static create<T extends Mixin>(...args: []): T;
static create<T extends Mixin>(...arguments: []): T;
detect(obj: any): boolean;
reopen<T extends Mixin>(args?: {}): T;
}