googlevideo
Version:
A set of utilities for working with Google Video APIs.
9 lines (8 loc) • 336 B
TypeScript
export declare class EventEmitterLike extends EventTarget {
#private;
constructor();
emit(type: string, ...args: any[]): void;
on(type: string, listener: (...args: any[]) => void): void;
once(type: string, listener: (...args: any[]) => void): void;
off(type: string, listener: (...args: any[]) => void): void;
}