mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-09-30 23:26:39 +08:00
14 lines
272 B
TypeScript
14 lines
272 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';
|
|
|
|
declare interface Window {}
|