1
0
Fork 0
mirror of https://github.com/Findus23/RainbowRoad.git synced 2024-09-18 14:53:51 +02:00
RainbowRoad/custom.d.ts

12 lines
187 B
TypeScript
Raw Normal View History

2022-08-15 15:54:18 +02:00
import "vite/client"
2022-08-07 18:38:22 +02:00
declare module "*.svg" {
2022-08-11 00:15:45 +02:00
const content: string;
export default content;
}
declare module "*.png" {
const content: string;
2022-08-07 18:38:22 +02:00
export default content;
}