2023-04-12 15:04:45 +00:00
|
|
|
declare module "*.jpg";
|
|
|
|
declare module "*.png";
|
|
|
|
declare module "*.woff2";
|
|
|
|
declare module "*.woff";
|
|
|
|
declare module "*.ttf";
|
2023-04-12 15:27:28 +00:00
|
|
|
declare module "*.scss" {
|
|
|
|
const content: Record<string, string>;
|
|
|
|
export default content;
|
2023-04-12 15:04:45 +00:00
|
|
|
}
|
2023-04-12 15:27:28 +00:00
|
|
|
|
|
|
|
declare module "*.svg";
|
2023-06-28 16:27:18 +00:00
|
|
|
|
|
|
|
declare interface Window {
|
|
|
|
__TAURI__?: {
|
|
|
|
writeText(text: string): Promise<void>;
|
|
|
|
};
|
|
|
|
}
|