chore: remove unused imports

This commit is contained in:
2025-10-03 20:40:23 +00:00
parent 022f3c4726
commit 1d8a117b93
15 changed files with 326 additions and 330 deletions

View File

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