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