ChatGPT-Next-Web/app/global.d.ts

18 lines
338 B
TypeScript
Raw Normal View History

2023-04-12 15:04:45 +00:00
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;
2023-04-12 15:04:45 +00:00
}
declare module "*.svg";
declare interface Window {
__TAURI__?: {
writeText(text: string): Promise<void>;
};
}