mirror of
https://github.com/Findus23/RainbowRoad.git
synced 2024-09-19 16:03:52 +02:00
11 lines
187 B
TypeScript
11 lines
187 B
TypeScript
import "vite/client"
|
|
|
|
declare module "*.svg" {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
|
|
declare module "*.png" {
|
|
const content: string;
|
|
export default content;
|
|
}
|