summaryrefslogtreecommitdiff
path: root/packages/anastasis-webui/src/declaration.d.ts
blob: b32fb70fc3518c0b34d68f81fffe0adaf148cbed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 'jed' {
    const x: any;
    export = x;
  }