// Generated by `bun init` declare module "*.svg" { /** * A path to the SVG file */ const path: `${string}.svg`; export = path; } // Plain stylesheets are imported for their side effect only; the bundler injects them. The more // specific "*.module.css" declaration below still wins for CSS modules. declare module "*.css"; declare module "*.module.css" { /** * A record of class names to their corresponding CSS module classes */ const classes: { readonly [key: string]: string }; export = classes; } declare module "*.png" { /** * A path to the SVG file */ const path: `${string}.png`; export = path; }