mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-05-17 22:14:17 +02:00
12 lines
215 B
TypeScript
12 lines
215 B
TypeScript
declare module '*.scss' {
|
|
const content: string
|
|
export = content
|
|
}
|
|
|
|
// dom custom event
|
|
interface CustomEventMap {
|
|
"nav": CustomEvent<{ url: CanonicalSlug }>;
|
|
}
|
|
|
|
declare const fetchData: Promise<ContentIndex>
|