quartz-research-note/quartz/components/types.ts

18 lines
511 B
TypeScript
Raw Normal View History

2023-06-08 05:27:32 +00:00
import { ComponentType, JSX } from "preact"
import { StaticResources } from "../resources"
import { QuartzPluginData } from "../plugins/vfile"
import { GlobalConfiguration } from "../cfg"
2023-06-03 19:07:19 +00:00
2023-06-08 05:27:32 +00:00
export type QuartzComponentProps = {
externalResources: StaticResources
fileData: QuartzPluginData
cfg: GlobalConfiguration
children: QuartzComponent[] | JSX.Element[]
}
export type QuartzComponent = ComponentType<QuartzComponentProps> & {
2023-06-03 19:07:19 +00:00
css?: string,
beforeDOMLoaded?: string,
afterDOMLoaded?: string,
}