diff --git a/Definitions/backbone-0.9.d.ts b/Definitions/backbone-0.9.d.ts index 64a9fe8e3..f44034690 100644 --- a/Definitions/backbone-0.9.d.ts +++ b/Definitions/backbone-0.9.d.ts @@ -9,7 +9,7 @@ declare module Backbone { trigger(events: string, ...args: any[]): any; } - export class Model { + export class Model extends Events { static extend(properties: any, classProperties?: any): any; // do not use, prefer TypeScript's extend functionality @@ -146,6 +146,7 @@ declare module Backbone { export class History { start(options? ); + navigate(fragment: string, options: any); } export class Sync {