Update breaking change from parsing class declaration in strict mode (as specified in ES6)

This commit is contained in:
Yui T
2015-04-08 11:35:43 -07:00
parent 65ea56c919
commit a88024c770
5 changed files with 16 additions and 16 deletions

View File

@@ -238,7 +238,7 @@ declare module Backbone {
initial(n: number): TModel[];
inject(iterator: (memo: any, element: TModel, index: number) => any, initialMemo: any, context?: any): any;
isEmpty(object: any): boolean;
invoke(methodName: string, arguments?: any[]): any;
invoke(methodName: string, args?: any[]): any;
last(): TModel;
last(n: number): TModel[];
lastIndexOf(element: TModel, fromIndex?: number): number;