Merge pull request #322 from omidkrad/master

Added options parameter to Backbone.Model.set()
This commit is contained in:
Diullei Gomes
2013-02-22 16:19:02 -08:00
+3 -3
View File
@@ -68,9 +68,9 @@ declare module Backbone {
constructor (attributes?: any, options?: any);
initialize(attributes?: any);
get(attributeName: string): any;
set(attributeName: string, value: any);
set(obj: any);
get(attributeName: string): any;
set(attributeName: string, value: any, options?: Silenceable);
set(obj: any, options?: Silenceable);
change();
changedAttributes(attributes?: any): any[];