UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

4 lines (3 loc) 174 B
export type Assign<T, U> = Omit<T, keyof U> & U; export type Optional<T, K extends keyof T> = Pick<Partial<T>, K> & Omit<T, K>; export type MaybePromise<T> = T | Promise<T>;