-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathglobal.d.ts
58 lines (49 loc) · 1.28 KB
/
global.d.ts
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/**
* This TypeScript file includes custom imports and configurations
* to handle non-code assets like images, text files, etc.
*
* Note:
* - Non-code assets (e.g., images) are imported with specific type declarations.
* - TypeScript requires these type declarations to ensure type safety and to
* provide IDE support (e.g., auto-completion, error checking).
* - If you need to import new asset types (e.g., a new image format),
* ensure corresponding type declarations exist, typically in a `.d.ts` file.
*
* Example:
* import myImage from './assets/image.png';
*
* If you're working with additional file types, you might need to extend
* the custom declarations or update the TypeScript configuration accordingly.
*/
declare module "*.png" {
const value: any;
export = value;
}
declare module "*.jpg" {
const value: any;
export = value;
}
declare module "*.jpeg" {
const value: any;
export = value;
}
declare module "*.webp" {
const value: any;
export = value;
}
declare module '*.gltf' {
const value: string;
export default value;
}
declare module '*.obj' {
const value: string;
export default value;
}
declare module '*.usdz' {
const value: string;
export default value;
}
declare module '*.glb' {
const value: string;
export default value;
}