mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-03-24 15:05:42 -05:00
13 lines
259 B
TypeScript
13 lines
259 B
TypeScript
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>
|