Files
drive/packages/web/bun-env.d.ts

18 lines
320 B
TypeScript
Raw Normal View History

2025-09-13 22:02:27 +01:00
// Generated by `bun init`
declare module "*.svg" {
2025-10-03 20:40:23 +00:00
/**
* A path to the SVG file
*/
const path: `${string}.svg`
export = path
2025-09-13 22:02:27 +01:00
}
declare module "*.module.css" {
2025-10-03 20:40:23 +00:00
/**
* A record of class names to their corresponding CSS module classes
*/
const classes: { readonly [key: string]: string }
export = classes
2025-09-13 22:02:27 +01:00
}