forked from XiaoMo/ChatGPT-Next-Web
12 lines
243 B
TypeScript
12 lines
243 B
TypeScript
declare module "*.jpg";
|
|
declare module "*.png";
|
|
declare module "*.woff2";
|
|
declare module "*.woff";
|
|
declare module "*.ttf";
|
|
declare module "*.scss" {
|
|
const content: Record<string, string>;
|
|
export default content;
|
|
}
|
|
|
|
declare module "*.svg";
|