kabirgh
2024-02-17 5af707ea20e8106857750e1d6a0e43cf18679749
index.d.ts
@@ -1,11 +1,12 @@
declare module '*.scss' {
declare module "*.scss" {
  const content: string
  export = content
}
// dom custom event
interface CustomEventMap {
  "nav": CustomEvent<{ url: string }>;
  nav: CustomEvent<{ url: FullSlug }>
  themechange: CustomEvent<{ theme: "light" | "dark" }>
}
declare const fetchData: Promise<ContentIndex>