playable
Version:
Video player based on HTML5Video
13 lines (12 loc) • 391 B
TypeScript
import { ITextMap } from './types';
import { IPlayerConfig } from '../../core/config';
export default class TextMap implements ITextMap {
static moduleName: string;
static dependencies: string[];
private _textMap;
constructor({ config }: {
config: IPlayerConfig;
});
get(id: string, args: any, defaultText?: string | Function): string;
destroy(): void;
}