rizaldy.club/quartz/components/types.ts

8 lines
175 B
TypeScript
Raw Normal View History

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