21 lines
375 B
TypeScript
21 lines
375 B
TypeScript
|
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 '*.png' {
|
||
|
const content: any;
|
||
|
export default content;
|
||
|
}
|
||
|
declare module 'jed' {
|
||
|
const x: any;
|
||
|
export = x;
|
||
|
}
|