From 4185303285505795fada9aa0c8292dfcbc929f59 Mon Sep 17 00:00:00 2001 From: Mateusz Warkocki Date: Thu, 18 Jun 2015 19:01:33 +0200 Subject: [PATCH] type of argument list elements for Mixin.create --- ember/ember.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ember/ember.d.ts b/ember/ember.d.ts index 691178d79..94a3d1cbb 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 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(...args: []): T; + static create(...arguments: []): T; detect(obj: any): boolean; reopen(args?: {}): T; }