From 2890e9bf8fae3edc0229446ee96fe0bc4ddeef54 Mon Sep 17 00:00:00 2001 From: Philippe CHARRIERE Date: Mon, 29 Oct 2012 14:02:02 +0100 Subject: [PATCH] Update Definitions/backbone-0.9.d.ts can't transpile to javascript if `declare module "Backbone"` and then it's ok with `declare module Backbone` --- Definitions/backbone-0.9.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Definitions/backbone-0.9.d.ts b/Definitions/backbone-0.9.d.ts index 46281829fe..64a9fe8e3b 100644 --- a/Definitions/backbone-0.9.d.ts +++ b/Definitions/backbone-0.9.d.ts @@ -1,7 +1,7 @@ // Type definitions for Backbone 0.9 // https://github.com/borisyankov/DefinitelyTyped -declare module "Backbone" { +declare module Backbone { export class Events { on(events: string, callback: (event) => any, context?: any): any;