playable
Version:
Video player based on HTML5Video
21 lines (20 loc) • 610 B
TypeScript
declare type IDebugPanelHighlightStyles = {
key: string;
number: string;
string: string;
boolean: string;
null: string;
};
declare type IDebugPanelViewStyles = IDebugPanelHighlightStyles & {
debugPanel: string;
infoContainer: string;
closeButton: string;
hidden: string;
};
declare type IDebugPanelViewCallbacks = {
onCloseButtonClick: EventListenerOrEventListenerObject;
};
declare type IDebugPanelViewConfig = {
callbacks: IDebugPanelViewCallbacks;
};
export { IDebugPanelHighlightStyles, IDebugPanelViewStyles, IDebugPanelViewCallbacks, IDebugPanelViewConfig, };