mirror of
https://github.com/binarydigitlol/binarydigitlol.github.io.git
synced 2025-06-20 17:02:24 +00:00
12 lines
212 B
TypeScript
12 lines
212 B
TypeScript
declare module "*.scss" {
|
|
const content: string
|
|
export = content
|
|
}
|
|
|
|
// dom custom event
|
|
interface CustomEventMap {
|
|
nav: CustomEvent<{ url: CanonicalSlug }>
|
|
}
|
|
|
|
declare const fetchData: Promise<ContentIndex>
|