playable
Version:
Video player based on HTML5Video
28 lines (20 loc) • 437 B
text/typescript
import { IThemeService } from '../../core/theme';
type ITimeViewStyles = {
timeWrapper: string;
time: string;
current: string;
separator: string;
duration: string;
hidden: string;
};
type ITimeViewConfig = {
theme: IThemeService;
};
interface ITimeControl {
getElement(): HTMLElement;
reset(): void;
show(): void;
hide(): void;
destroy(): void;
}
export { ITimeControl, ITimeViewStyles, ITimeViewConfig };