From 8eec47c340d48d9b45970a88da0aaff4e216a7e2 Mon Sep 17 00:00:00 2001
From: kabirgh <15871468+kabirgh@users.noreply.github.com>
Date: Mon, 15 Jan 2024 16:39:16 +0000
Subject: [PATCH] fix: rebuild errors on windows (#692)
---
index.d.ts | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/index.d.ts b/index.d.ts
index b98a5be..aec536d 100644
--- a/index.d.ts
+++ b/index.d.ts
@@ -1,11 +1,11 @@
-declare module '*.scss' {
+declare module "*.scss" {
const content: string
export = content
}
// dom custom event
interface CustomEventMap {
- "nav": CustomEvent<{ url: CanonicalSlug }>;
+ nav: CustomEvent<{ url: FullSlug }>
}
declare const fetchData: Promise<ContentIndex>
--
Gitblit v1.10.0