mirror of
https://github.com/ZetaKebab/quartz.git
synced 2025-01-14 22:18:43 +00:00
9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
import { ComponentType } from "preact"
|
|
|
|
export type QuartzComponent<Props> = {
|
|
Component: ComponentType<Props>
|
|
css?: string,
|
|
beforeDOMLoaded?: string,
|
|
afterDOMLoaded?: string,
|
|
}
|