summaryrefslogtreecommitdiff
path: root/src/types.d.ts
blob: dfc0472afea897b436d1f36a5f1f7df8c61bcab8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
declare module "*.svg" {
  const content: string;
  export default content;
}

declare module "*.png" {
  const content: string;
  export default content;
}

declare module "*.jpg" {
  const content: string;
  export default content;
}