mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-12 18:29:57 -05:00
4 lines
160 B
TypeScript
4 lines
160 B
TypeScript
import { VNode } from "preact";
|
|
|
|
export type Child = VNode | string | number | boolean | undefined | null;
|
|
export type Children = Child | Child[] | Children[];
|