inline scripts

This commit is contained in:
Jacky Zhao
2023-06-03 15:07:19 -04:00
parent 894c7ff4e7
commit 7b5df46f1c
19 changed files with 187 additions and 69 deletions

View File

@@ -0,0 +1,8 @@
import { ComponentType } from "preact"
export type QuartzComponent<Props> = {
Component: ComponentType<Props>
css?: string,
beforeDOMLoaded?: string,
afterDOMLoaded?: string,
}