mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-06-16 17:56:39 +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>
|