Add TypeScript toolchain (tsc per-module, build-only)

This commit is contained in:
2026-06-13 21:01:26 +02:00
parent 58008d6f2c
commit 5fd82c78d4
5 changed files with 41 additions and 5 deletions
+7
View File
@@ -0,0 +1,7 @@
export {};
declare global {
interface Window {
fetchWithHtmxTriggers(input: RequestInfo | URL, init?: RequestInit): Promise<Response>;
}
}