-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimages.d.ts
48 lines (39 loc) · 908 Bytes
/
images.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
type StaticImageData = {
src: string;
height: number;
width: number;
placeholder?: string;
};
declare module "*.png" {
const content: StaticImageData;
export default content;
}
declare module "*.svg" {
import type { FC, SVGProps } from "react";
const content: FC<SVGProps<SVGSVGElement>>;
export default content;
}
declare module "*.jpg" {
const content: StaticImageData;
export default content;
}
declare module "*.jpeg" {
const content: StaticImageData;
export default content;
}
declare module "*.gif" {
const content: StaticImageData;
export default content;
}
declare module "*.webp" {
const content: StaticImageData;
export default content;
}
declare module "*.ico" {
const content: StaticImageData;
export default content;
}
declare module "*.bmp" {
const content: StaticImageData;
export default content;
}