diff --git a/ember/ember.d.ts b/ember/ember.d.ts index cd1ef6079..691178d79 100644 --- a/ember/ember.d.ts +++ b/ember/ember.d.ts @@ -1418,9 +1418,9 @@ declare module Ember { apply(obj: any): any; /** Creates an instance of the class. - @param arguments A hash containing values with which to initialize the newly instantiated object. + @param args A hash containing values with which to initialize the newly instantiated object. **/ - static create(args: {}): T; + static create(...args: []): T; detect(obj: any): boolean; reopen(args?: {}): T; }