This commit is contained in:
2025-11-09 21:20:44 +08:00
parent 49ba397274
commit de5d95f1a9
20 changed files with 658 additions and 1 deletions

17
bun-web/bun-env.d.ts vendored Normal file
View File

@@ -0,0 +1,17 @@
// Generated by `bun init`
declare module "*.svg" {
/**
* A path to the SVG file
*/
const path: `${string}.svg`;
export = path;
}
declare module "*.module.css" {
/**
* A record of class names to their corresponding CSS module classes
*/
const classes: { readonly [key: string]: string };
export = classes;
}