UNPKG

rvx

Version:

A signal based rendering library

13 lines (10 loc) 241 B
/** * Utility type for any falsy value. */ export type Falsy = null | undefined | false | 0 | 0n | ""; /** * Common interface for components. */ export interface Component<Props = void, Content = unknown> { (props: Props): Content; }