UNPKG

@wener/console

Version:
5 lines (3 loc) 197 B
export type EnumValues<T> = T[Exclude<keyof T, '__proto__'>]; export type StateUpdater<T> = Partial<T> | ((prevState: T) => void | T); export type SetState<T> = (action: StateUpdater<T>) => void;