init: bootstrap image studio

This commit is contained in:
syntaxbullet
2026-07-02 22:39:35 +02:00
commit f9ec3e5528
17 changed files with 536 additions and 0 deletions

19
bun-env.d.ts vendored Normal file
View File

@@ -0,0 +1,19 @@
// Generated by `bun init`
declare module "*.svg" {
/**
* A path to the SVG file
*/
const path: `${string}.svg`;
export = path;
}
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;
}