export type ElementChild = Element | string; export interface ElementSpec { readonly attributes?: Readonly>; readonly children?: readonly ElementChild[]; readonly className?: string; readonly text?: string; } export type ElementTag = keyof HTMLElementTagNameMap;