Files
quartz-org-roam/org-garden/quartz-config/index.d.ts
Ignacio Ballesteros 678fb315d3 feat: unified org-garden
2026-02-21 13:10:30 +01:00

16 lines
398 B
TypeScript

declare module "*.scss" {
const content: string
export = content
}
// dom custom event
interface CustomEventMap {
prenav: CustomEvent<{}>
nav: CustomEvent<{ url: FullSlug }>
themechange: CustomEvent<{ theme: "light" | "dark" }>
readermodechange: CustomEvent<{ mode: "on" | "off" }>
}
type ContentIndex = Record<FullSlug, ContentDetails>
declare const fetchData: Promise<ContentIndex>