Bring back the utility belt

This commit is contained in:
Steve Kinney
2024-09-30 14:59:20 -06:00
parent 520a38c217
commit 36dff6804c
4 changed files with 56 additions and 0 deletions

10
types.d.ts vendored
View File

@@ -1 +1,11 @@
/// <reference types="vite/client" />
declare module '*.html' {
const value: string;
export default value;
}
declare module '*.html?raw' {
const value: string;
export default value;
}