1
0
mirror of https://gitlab.com/MisterBiggs/brain-quartz.git synced 2025-06-16 01:36:40 +00:00
2023-06-06 19:48:37 -07:00

8 lines
175 B
TypeScript

import { ComponentType } from "preact"
export type QuartzComponent<Props> = ComponentType<Props> & {
css?: string,
beforeDOMLoaded?: string,
afterDOMLoaded?: string,
}