36 lines
734 B
TypeScript
36 lines
734 B
TypeScript
/* Use this file to declare any custom file extensions for importing */
|
|
/* Use this folder to also add/extend a package d.ts file, if needed. */
|
|
|
|
declare module "*.css";
|
|
declare module "*.svg" {
|
|
const ref: string;
|
|
export default ref;
|
|
}
|
|
declare module "*.bmp" {
|
|
const ref: string;
|
|
export default ref;
|
|
}
|
|
declare module "*.gif" {
|
|
const ref: string;
|
|
export default ref;
|
|
}
|
|
declare module "*.jpg" {
|
|
const ref: string;
|
|
export default ref;
|
|
}
|
|
declare module "*.jpeg" {
|
|
const ref: string;
|
|
export default ref;
|
|
}
|
|
declare module "*.png" {
|
|
const ref: string;
|
|
export default ref;
|
|
}
|
|
declare module "*.webp" {
|
|
const ref: string;
|
|
export default ref;
|
|
}
|
|
declare module "*.json" {
|
|
const value: any;
|
|
export default value;
|
|
}
|