Files
platform/bun-env.d.ts
T
2026-02-16 19:34:35 +00:00

26 lines
450 B
TypeScript

// 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;
}
declare module "*.png" {
/**
* A path to the SVG file
*/
const path: `${string}.png`;
export = path;
}