feat: support non-singleton search

This commit is contained in:
Jacky Zhao
2025-03-09 15:33:15 -07:00
parent 1cd8e7f0d5
commit 9c8fec06d2
4 changed files with 67 additions and 64 deletions

1
index.d.ts vendored
View File

@ -10,4 +10,5 @@ interface CustomEventMap {
themechange: CustomEvent<{ theme: "light" | "dark" }>
}
type ContentIndex = Record<FullSlug, ContentDetails>
declare const fetchData: Promise<ContentIndex>