From bb24cd13c7fafbd42d3980c45351a58a76dabb18 Mon Sep 17 00:00:00 2001
From: 1 gal Rosemary <cerasusyedoensis@proton.me>
Date: Sat, 05 Apr 2025 17:39:28 +0000
Subject: [PATCH] fix(css): styles issues with popover, overflow, and scroll overflow (#1907)
---
index.d.ts | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/index.d.ts b/index.d.ts
index b98a5be..07f8082 100644
--- a/index.d.ts
+++ b/index.d.ts
@@ -1,11 +1,14 @@
-declare module '*.scss' {
+declare module "*.scss" {
const content: string
export = content
}
// dom custom event
interface CustomEventMap {
- "nav": CustomEvent<{ url: CanonicalSlug }>;
+ prenav: CustomEvent<{}>
+ nav: CustomEvent<{ url: FullSlug }>
+ themechange: CustomEvent<{ theme: "light" | "dark" }>
}
+type ContentIndex = Record<FullSlug, ContentDetails>
declare const fetchData: Promise<ContentIndex>
--
Gitblit v1.10.0