dependabot[bot]
2025-11-20 c99c8070f22cc40932c06b7b75a0f8d26982aa91
index.d.ts
@@ -1,4 +1,15 @@
declare module '*.scss' {
  const content: string
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>