chore: add HTMX TypeScript types and book picker implementation plan

- Add htmx.d.ts with TypeScript type definitions for HTMX global
- Add BOOK_PICKER_IMPL.md with implementation plan for book picker modal
This commit is contained in:
2026-03-16 16:24:26 -04:00
parent 6d92dff5e3
commit f2cbb5a433
2 changed files with 215 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
declare var htmx: {
trigger(elt: Element | string, event: string, detail?: any): void;
find(selector: string): Element | null;
};