public_notes/index.d.ts

12 lines
212 B
TypeScript
Raw Normal View History

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