dependabot[bot]
2024-01-28 bebd6320b70fca79c1a1cbdaaaea4f87c92f87fd
1
2
3
4
5
6
7
8
9
10
11
12
declare module "*.scss" {
  const content: string
  export = content
}
 
// dom custom event
interface CustomEventMap {
  nav: CustomEvent<{ url: FullSlug }>
  themechange: CustomEvent<{ theme: "light" | "dark" }>
}
 
declare const fetchData: Promise<ContentIndex>