rizaldy.club/quartz/components/types.ts

23 lines
726 B
TypeScript
Raw Normal View History

2023-06-08 12:27:32 +07:00
import { ComponentType, JSX } from "preact"
import { StaticResources } from "../resources"
import { QuartzPluginData } from "../plugins/vfile"
import { GlobalConfiguration } from "../cfg"
2023-06-10 13:06:02 +07:00
import { Node } from "hast"
2023-06-04 02:07:19 +07:00
2023-06-08 12:27:32 +07:00
export type QuartzComponentProps = {
externalResources: StaticResources
fileData: QuartzPluginData
cfg: GlobalConfiguration
children: QuartzComponent[] | JSX.Element[]
2023-06-10 13:06:02 +07:00
tree: Node<QuartzPluginData>
2023-06-20 10:37:45 +07:00
allFiles: QuartzPluginData[]
2023-06-08 12:27:32 +07:00
}
export type QuartzComponent = ComponentType<QuartzComponentProps> & {
2023-06-04 02:07:19 +07:00
css?: string,
beforeDOMLoaded?: string,
afterDOMLoaded?: string,
}
2023-06-12 13:46:38 +07:00
export type QuartzComponentConstructor<Options extends object | undefined = undefined> = (opts: Options) => QuartzComponent