diff --git a/backbone/backbone-global.d.ts b/backbone/backbone-global.d.ts index ae111aea0d..764aa83d75 100644 --- a/backbone/backbone-global.d.ts +++ b/backbone/backbone-global.d.ts @@ -367,7 +367,9 @@ declare module Backbone { remove(): View; make(tagName: any, attributes?: any, content?: any): any; delegateEvents(events?: EventsHash): any; + delegate(eventName: string, selector: string, listener: Function): View; undelegateEvents(): any; + undelegate(eventName: string, selector?: string, listener?: Function): View; _ensureElement(): void; }