dependabot[bot]
2025-09-28 3ff7ca4155f5e9f03e2304b33a89de4b0a6aaa2c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>