wallet-core/packages/aml-backoffice-ui/src/declaration.d.ts
2023-06-05 10:04:09 -03:00

31 lines
594 B
TypeScript

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;