mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-10 10:11:46 +00:00
55 lines
1.3 KiB
TypeScript
55 lines
1.3 KiB
TypeScript
import '@total-typescript/ts-reset';
|
|
|
|
import type { ipcRenderer as electronIpcRenderer } from 'electron';
|
|
import type is from 'electron-is';
|
|
|
|
import type * as config from './config';
|
|
import type { VideoDataChanged } from '@/types/video-data-changed';
|
|
import type { t } from '@/i18n';
|
|
import type { trustedTypes } from 'trusted-types';
|
|
|
|
declare global {
|
|
interface Compressor {
|
|
audioSource: MediaElementAudioSourceNode;
|
|
audioContext: AudioContext;
|
|
}
|
|
|
|
interface DocumentEventMap {
|
|
'peard:audio-can-play': CustomEvent<Compressor>;
|
|
'videodatachange': CustomEvent<VideoDataChanged>;
|
|
}
|
|
|
|
declare var electronIs: typeof import('electron-is');
|
|
|
|
interface Window {
|
|
trustedTypes?: typeof trustedTypes;
|
|
ipcRenderer: typeof electronIpcRenderer;
|
|
mainConfig: typeof config;
|
|
electronIs: typeof is;
|
|
ELECTRON_RENDERER_URL: string | undefined;
|
|
/**
|
|
* Internal variable (Last interaction time)
|
|
*/
|
|
_lact: number;
|
|
navigation: Navigation;
|
|
download: () => void;
|
|
togglePictureInPicture: () => void;
|
|
reload: () => void;
|
|
i18n: {
|
|
t: typeof t;
|
|
};
|
|
}
|
|
}
|
|
|
|
// import { Howl as _Howl } from 'howler';
|
|
declare module 'howler' {
|
|
interface Howl {
|
|
_sounds: {
|
|
_paused: boolean;
|
|
_ended: boolean;
|
|
_id: string;
|
|
_node: HTMLMediaElement;
|
|
}[];
|
|
}
|
|
}
|