@ezuikit/theme-plugin-playback-rate
Version:
回放主题
14 lines (11 loc) • 325 B
TypeScript
interface IRate {
/** 值需要唯一 */
rate: 0.5 | 1 | 2 | 4 | 8;
text?: string;
isDefault?: boolean;
}
interface PlaybackRateProps {
list: IRate[];
}
declare function PlaybackRate(props?: PlaybackRateProps): (theme: any) => HTMLDivElement;
export { type PlaybackRateProps, PlaybackRate as default };