fix: add workaround for podcast type video (#1362)

This commit is contained in:
JellyBrick
2023-11-04 16:56:41 +09:00
committed by GitHub
parent fdd6d9929f
commit 47f38cc690
2 changed files with 17 additions and 0 deletions

View File

@ -217,6 +217,17 @@ export interface PlayabilityStatus {
audioOnlyPlayability: AudioOnlyPlayability;
miniplayer: Miniplayer;
contextParams: string;
transportControlsConfig?: TransportControlsConfig;
}
type ReplaceDefaultType = {
replaceDefault: boolean,
};
export interface TransportControlsConfig {
seekForwardStatus: ReplaceDefaultType;
seekBackwardStatus: ReplaceDefaultType;
playbackRateStatus: ReplaceDefaultType;
}
export interface AudioOnlyPlayability {