mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Merge pull request #322 from omidkrad/master
Added options parameter to Backbone.Model.set()
This commit is contained in:
Vendored
+3
-3
@@ -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[];
|
||||
|
||||
Reference in New Issue
Block a user