From b403d8177978cb09b49e06ceb14621e298a9316c Mon Sep 17 00:00:00 2001 From: "Omid K. Rad" Date: Fri, 22 Feb 2013 10:16:44 -0800 Subject: [PATCH] Added options parameter to Backbone.Model.set() --- backbone/backbone.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backbone/backbone.d.ts b/backbone/backbone.d.ts index b257e3c69..0afac1779 100644 --- a/backbone/backbone.d.ts +++ b/backbone/backbone.d.ts @@ -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[];