aboutsummaryrefslogtreecommitdiff
path: root/packages/demobank-ui/src/declaration.d.ts
blob: 73bccac71f779590ce94752a580a492ec2da8fd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
declare module '*.css' {
  const mapping: Record<string, string>;
  export default mapping;
}
declare module '*.svg' {
  const content: any;
  export default content;
}
declare module '*.jpeg' {
  const content: any;
  export default content;
}
declare module '*.png' {
  const content: any;
  export default content;
}
declare module 'jed' {
  const x: any;
  export = x;
}