From b33ddcacd8d2696a50be7ece882ce97055a40f14 Mon Sep 17 00:00:00 2001 From: "Martin D." Date: Sat, 12 Apr 2014 15:45:12 -0400 Subject: [PATCH] Add dispose method --- videojs/videojs.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/videojs/videojs.d.ts b/videojs/videojs.d.ts index 1c53eefaf9..0c56522ffe 100644 --- a/videojs/videojs.d.ts +++ b/videojs/videojs.d.ts @@ -43,6 +43,7 @@ interface VideoJSPlayer { ready(callback: () => void ): void; on(eventName: string, callback: () => void ): void; off(eventName: string, callback: () => void ): void; + dispose(): void; } interface VideoJSStatic {