node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
export type LabelOptions = {
seekOffset?: number;
playbackRate?: number;
};
export declare const tooltipLabels: {
ENTER_AIRPLAY: string;
EXIT_AIRPLAY: string;
AUDIO_TRACK_MENU: string;
CAPTIONS: string;
ENABLE_CAPTIONS: string;
DISABLE_CAPTIONS: string;
START_CAST: string;
STOP_CAST: string;
ENTER_FULLSCREEN: string;
EXIT_FULLSCREEN: string;
MUTE: string;
UNMUTE: string;
ENTER_PIP: string;
EXIT_PIP: string;
PLAY: string;
PAUSE: string;
PLAYBACK_RATE: string;
RENDITIONS: string;
SEEK_BACKWARD: string;
SEEK_FORWARD: string;
SETTINGS: string;
};
export declare const nouns: Record<string, (options?: LabelOptions) => string>;
export declare const verbs: Record<string, (options?: LabelOptions) => string>;
declare const _default: {
[x: string]: ((options?: LabelOptions) => string) | ((options?: LabelOptions) => string);
};
export default _default;

64
server/node_modules/media-chrome/dist/labels/labels.js generated vendored Normal file
View File

@@ -0,0 +1,64 @@
const tooltipLabels = {
ENTER_AIRPLAY: "Start airplay",
EXIT_AIRPLAY: "Stop airplay",
AUDIO_TRACK_MENU: "Audio",
CAPTIONS: "Captions",
ENABLE_CAPTIONS: "Enable captions",
DISABLE_CAPTIONS: "Disable captions",
START_CAST: "Start casting",
STOP_CAST: "Stop casting",
ENTER_FULLSCREEN: "Enter fullscreen mode",
EXIT_FULLSCREEN: "Exit fullscreen mode",
MUTE: "Mute",
UNMUTE: "Unmute",
ENTER_PIP: "Enter picture in picture mode",
EXIT_PIP: "Enter picture in picture mode",
PLAY: "Play",
PAUSE: "Pause",
PLAYBACK_RATE: "Playback rate",
RENDITIONS: "Quality",
SEEK_BACKWARD: "Seek backward",
SEEK_FORWARD: "Seek forward",
SETTINGS: "Settings"
};
const nouns = {
AUDIO_PLAYER: () => "audio player",
VIDEO_PLAYER: () => "video player",
VOLUME: () => "volume",
SEEK: () => "seek",
CLOSED_CAPTIONS: () => "closed captions",
PLAYBACK_RATE: ({ playbackRate = 1 } = {}) => `current playback rate ${playbackRate}`,
PLAYBACK_TIME: () => `playback time`,
MEDIA_LOADING: () => `media loading`,
SETTINGS: () => `settings`,
AUDIO_TRACKS: () => `audio tracks`,
QUALITY: () => `quality`
};
const verbs = {
PLAY: () => "play",
PAUSE: () => "pause",
MUTE: () => "mute",
UNMUTE: () => "unmute",
ENTER_AIRPLAY: () => "start airplay",
EXIT_AIRPLAY: () => "stop airplay",
ENTER_CAST: () => "start casting",
EXIT_CAST: () => "stop casting",
ENTER_FULLSCREEN: () => "enter fullscreen mode",
EXIT_FULLSCREEN: () => "exit fullscreen mode",
ENTER_PIP: () => "enter picture in picture mode",
EXIT_PIP: () => "exit picture in picture mode",
SEEK_FORWARD_N_SECS: ({ seekOffset = 30 } = {}) => `seek forward ${seekOffset} seconds`,
SEEK_BACK_N_SECS: ({ seekOffset = 30 } = {}) => `seek back ${seekOffset} seconds`,
SEEK_LIVE: () => "seek to live",
PLAYING_LIVE: () => "playing live"
};
var labels_default = {
...nouns,
...verbs
};
export {
labels_default as default,
nouns,
tooltipLabels,
verbs
};