revite/src/types/Preact.ts

5 lines
160 B
TypeScript
Raw Normal View History

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