-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtypings.d.ts
More file actions
35 lines (30 loc) · 824 Bytes
/
typings.d.ts
File metadata and controls
35 lines (30 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/// <reference types="vite/client" />
declare module '*.md';
declare module '*.png';
declare module '*.svg';
declare module '*.woff';
declare module '*.woff2';
declare module '*?url';
declare const process: {
env: {
VERSION: string;
NODE_ENV?: string;
ref?: string;
};
};
interface Window {
dataLayer?: unknown[][];
Module?: unknown;
createObjectURL?: (file: Blob) => string;
dispatch?: (type: string, payload: unknown) => void;
}
interface HTMLElement {
msRequestFullscreen?: () => Promise<void> | void;
mozRequestFullScreen?: () => Promise<void> | void;
webkitRequestFullscreen?: () => Promise<void> | void;
}
interface Document {
msExitFullscreen?: () => Promise<void> | void;
mozCancelFullScreen?: () => Promise<void> | void;
webkitExitFullscreen?: () => Promise<void> | void;
}