rizaldy.club/index.d.ts

12 lines
215 B
TypeScript
Raw Normal View History

2023-06-02 04:35:31 +07:00
declare module '*.scss' {
2023-06-17 09:41:59 +07:00
const content: string
2023-06-02 04:35:31 +07:00
export = content
}
2023-06-17 09:41:59 +07:00
// dom custom event
interface CustomEventMap {
2023-07-13 14:19:35 +07:00
"nav": CustomEvent<{ url: CanonicalSlug }>;
2023-06-17 09:41:59 +07:00
}
2023-06-19 00:47:07 +07:00
declare const fetchData: Promise<ContentIndex>