UNPKG

playable

Version:

Video player based on HTML5Video

10 lines (9 loc) 293 B
declare type TextResolver = (args: any) => string; interface ITextMapConfig { [index: string]: string | TextResolver; } interface ITextMap { get(id: string, args?: any, defaultText?: string | Function): string; destroy(): void; } export { TextResolver, ITextMap, ITextMapConfig };