revite/src/types/Preact.ts

5 lines
160 B
TypeScript
Raw Normal View History

2021-06-18 10:57:08 -04:00
import { VNode } from "preact";
2021-06-18 09:20:57 -04:00
2021-06-19 15:00:30 -04:00
export type Child = VNode | string | number | boolean | undefined | null;
2021-06-19 13:46:05 -04:00
export type Children = Child | Child[] | Children[];