From f4e60dfe547048a851d56dde47373f5a2fd509b4 Mon Sep 17 00:00:00 2001 From: Nelson Morais Date: Mon, 5 Oct 2015 13:00:41 +0100 Subject: [PATCH] Update breeze.d.ts Change ths SaveOptions constructor parameter to be alignd with the Breeze docs (http://breeze.github.io/doc-js/api-docs/classes/SaveOptions.html) --- breeze/breeze.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/breeze/breeze.d.ts b/breeze/breeze.d.ts index 139a306299..2a60df6d84 100644 --- a/breeze/breeze.d.ts +++ b/breeze/breeze.d.ts @@ -857,7 +857,7 @@ declare module breeze { tag: Object; static defaultInstance: SaveOptions; - constructor(config?: { allowConcurrentSaves?: boolean; }); + constructor(config?: { allowConcurrentSaves?: boolean; resourceName?: string; dataService?: DataService; tag?: any}); setAsDefault(): SaveOptions; using(config: SaveOptionsConfiguration): SaveOptions;