mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-16 23:10:29 +00:00
Fixes the order of methods in the Component.
This commit is contained in:
Vendored
+2
-2
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user