mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
19 lines
350 B
TypeScript
19 lines
350 B
TypeScript
declare module '*.svg' {
|
|
const content: any;
|
|
export default content;
|
|
}
|
|
|
|
declare module '*.scss' {
|
|
const content: { [className: string]: string };
|
|
export = content;
|
|
}
|
|
|
|
declare module '*.less' {
|
|
const content: { [className: string]: string };
|
|
export = content;
|
|
}
|
|
|
|
declare module '*.json' {
|
|
const content: any;
|
|
export default content;
|
|
}
|