2023-05-17 14:57:53 +02:00
|
|
|
declare const __VERSION__: string;
|
|
|
|
declare const __GIT_HASH__: string;
|
2023-05-25 23:08:20 +02:00
|
|
|
|
|
|
|
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;
|