php/blog/index.d.ts
CloudyyUw 2f6c0c56e2
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
using quartz for the blog + new post about this setup
2024-07-24 23:41:44 -03:00

12 lines
263 B
TypeScript

declare module "*.scss" {
const content: string
export = content
}
// dom custom event
interface CustomEventMap {
nav: CustomEvent<{ url: FullSlug }>
themechange: CustomEvent<{ theme: "dark" | "light" }>
}
declare const fetchData: Promise<ContentIndex>