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