personal website
1// Generated by `bun init`
2
3/// <reference path="src/guestbook.d.ts" />
4
5declare module "*.svg" {
6 /**
7 * A path to the SVG file
8 */
9 const path: `${string}.svg`;
10 export = path;
11}
12
13declare module "*.module.css" {
14 /**
15 * A record of class names to their corresponding CSS module classes
16 */
17 const classes: { readonly [key: string]: string };
18 export = classes;
19}