revite/src/types/Preact.ts
2021-06-19 20:00:30 +01:00

4 lines
160 B
TypeScript

import { VNode } from "preact";
export type Child = VNode | string | number | boolean | undefined | null;
export type Children = Child | Child[] | Children[];