mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
16 lines
329 B
TypeScript
16 lines
329 B
TypeScript
/** 进度调整模式(灵敏度) */
|
|
export enum ProgressSeekMode {
|
|
Fast = '高速',
|
|
Medium = '中速',
|
|
Slow = '低速',
|
|
}
|
|
/** 手势操作预览参数 */
|
|
export interface GesturePreviewParams {
|
|
/** 亮度调整 */
|
|
brightness?: number
|
|
/** 音量调整 */
|
|
volume?: number
|
|
/** 进度调整 */
|
|
progress?: number
|
|
}
|