summaryrefslogtreecommitdiff
path: root/packages/aml-backoffice-ui/src/declaration.d.ts
blob: 6af72042cea7c8dc72988d2d4f8b5ab9b2232546 (plain)
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

declare const __VERSION__: string;
declare const __GIT_HASH__: string;

declare module "*.po" {
  const content: any;
  export default content;
}
declare module "jed" {
  const x: any;
  export = x;
}
declare module "*.jpeg" {
  const content: any;
  export default content;
}
declare module "*.png" {
  const content: any;
  export default content;
}
declare module "*.svg" {
  const content: any;
  export default content;
}

declare module "*.scss" {
  const content: Record<string, string>;
  export default content;
}
declare const __VERSION__: string;
declare const __GIT_HASH__: string;