-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathenv.d.ts
More file actions
33 lines (26 loc) · 691 Bytes
/
Copy pathenv.d.ts
File metadata and controls
33 lines (26 loc) · 691 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
/// <reference types="vite/client" />
interface DocumentPictureInPicture extends EventTarget {
window: Window | null
requestWindow(option?: { width?: number; height?: number }): Promise<Window>
}
export declare global {
interface documentPictureInPicture extends DocumentPictureInPicture {}
const __DEV__: boolean
interface Window {
documentPictureInPicture: DocumentPictureInPicture
trustedTypes: any
}
interface Navigator {
userAgentData: {
platform: string
}
}
interface PromiseConstructor {
withResolvers: () => {
promise: Promise<any>
resolve: (value: any) => void
reject: (reason: any) => void
}
}
}
export {}