UNPKG

@protorians/widgets

Version:

Create your web user interfaces with widgets

8 lines (7 loc) 170 B
export type ExtendableType<T, V> = { [K in keyof T]: T[K] | V; }; export type CloneType<T> = T; export type Undefined<T> = { [K in keyof T]: T[K] | undefined; };