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