dalfuss.net/quartz/components/types.ts

8 lines
175 B
TypeScript
Raw Normal View History

2023-06-03 15:07:19 -04:00
import { ComponentType } from "preact"
2023-06-06 19:48:37 -07:00
export type QuartzComponent<Props> = ComponentType<Props> & {
2023-06-03 15:07:19 -04:00
css?: string,
beforeDOMLoaded?: string,
afterDOMLoaded?: string,
}