From 1249a51a3827c2e76fc48e9d7d6d7eac431b64cc Mon Sep 17 00:00:00 2001 From: Eirik Hoem Date: Sat, 28 Dec 2013 16:06:22 +0100 Subject: [PATCH] Model.url is now a method, see docs --- backbone/backbone.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backbone/backbone.d.ts b/backbone/backbone.d.ts index aad4cffde..32205e1f9 100644 --- a/backbone/backbone.d.ts +++ b/backbone/backbone.d.ts @@ -80,7 +80,7 @@ declare module Backbone { } class ModelBase extends Events { - url: any; + url(): any; parse(response: any, options?: any): any; toJSON(options?: any): any; sync(...arg: any[]): JQueryXHR;