This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
valnet/assets/assets.d.ts

15 lines
227 B
TypeScript
Raw Permalink Normal View History

2021-04-08 20:38:05 -04:00
declare module '*.svg' {
const content: any;
export default content;
}
declare module '*.png' {
const content: any;
export default content;
}
declare module '*.jpg' {
const content: any;
export default content;
}