Tomoya Matsuura(MacBookPro)
312a2330c3
All checks were successful
Build / build (push) Successful in 2m11s
13 lines
263 B
TypeScript
13 lines
263 B
TypeScript
declare module "*.scss" {
|
|
const content: string
|
|
export = content
|
|
}
|
|
|
|
// dom custom event
|
|
interface CustomEventMap {
|
|
nav: CustomEvent<{ url: FullSlug }>
|
|
themechange: CustomEvent<{ theme: "light" | "dark" }>
|
|
}
|
|
|
|
declare const fetchData: Promise<ContentIndex>
|