2021-10-11 10:58:55 +02:00
|
|
|
declare module "*.css" {
|
|
|
|
const mapping: Record<string, string>;
|
|
|
|
export default mapping;
|
|
|
|
}
|
2021-10-19 16:17:54 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|