mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 19:46:23 +00:00
8 lines
186 B
TypeScript
8 lines
186 B
TypeScript
import { ComponentType } from "preact"
|
|
|
|
export type QuartzComponent<Props> = {
|
|
Component: ComponentType<Props>
|
|
css?: string,
|
|
beforeDOMLoaded?: string,
|
|
afterDOMLoaded?: string,
|
|
}
|