Fixes the order of methods in the Component.

This commit is contained in:
Grzegorz Blaszczyk
2018-06-01 12:59:16 +02:00
parent 2965cd1dd2
commit 26ca6ba881

View File

@@ -92,11 +92,11 @@ declare namespace videojs {
initChildren(): void;
localize(key: string, tokens?: string[], defaultValue?: string): string;
name(): string;
options(obj: any): any;
player(): Player;
off(eventName?: string, callback?: (eventObject: Event) => void): void;
on(eventName: string, callback: (eventObject: Event) => void): void;
one(eventName: string, callback: (eventObject: Event) => void): void;
options(obj: any): any;
player(): Player;
ready(callback: (this: this) => void): this;
removeAttribute(attribute: string): void;
removeChild(component: Component): void;