UNPKG

@thomzz/async-data

Version:

A lightweight, dependency-free utility for managing and typing asynchronous data states.

4 lines (3 loc) 127 B
export type Override<Type, NewType extends { [key in keyof Type]?: NewType[key]; }> = Omit<Type, keyof NewType> & NewType;