forked from mezonai/mezon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.d.ts
More file actions
40 lines (34 loc) · 801 Bytes
/
global.d.ts
File metadata and controls
40 lines (34 loc) · 801 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
36
37
38
39
40
interface Window {
ethereum?: {
request: (args: { method: string; params?: any[] }) => Promise<any>;
isMetaMask?: boolean;
selectedAddress?: string;
networkVersion?: string;
on?: (event: string, callback: (...args: any[]) => void) => void;
removeListener?: (event: string, callback: (...args: any[]) => void) => void;
};
}
declare module '*.png' {
const content: string;
export default content;
}
declare module '*.jpg' {
const content: string;
export default content;
}
declare module '*.jpeg' {
const content: string;
export default content;
}
declare module '*.gif' {
const content: string;
export default content;
}
declare module '*.svg' {
const content: string;
export default content;
}
declare module '*.webp' {
const content: string;
export default content;
}