UNPKG

@flex-development/tutils

Version:
15 lines (12 loc) 292 B
/** * @file Type Definitions - OrPartial * @module tutils/types/OrPartial */ /** * Constructs a type representing all properties of `T` or recursively, a subset * of properties. * * @template T - Value type */ type OrPartial<T> = Partial<T> | T export { type OrPartial as default }