* start work on client side explorer * fix tests * fmt * generic test flag * add prenav hook * add highlight class * make flex more consistent, remove transition * open folders that are prefixes of current path * make mobile look nice * more style fixes
13 lines
289 B
TypeScript
13 lines
289 B
TypeScript
declare module "*.scss" {
|
|
const content: string
|
|
export = content
|
|
}
|
|
|
|
// dom custom event
|
|
interface CustomEventMap {
|
|
prenav: CustomEvent<{}>
|
|
nav: CustomEvent<{ url: FullSlug }>
|
|
themechange: CustomEvent<{ theme: "light" | "dark" }>
|
|
}
|
|
|
|
declare const fetchData: Promise<ContentIndex>
|