UNPKG

@flex-development/tutils

Version:
17 lines (13 loc) 359 B
/** * @file Type Definitions - OrDeepPartial * @module tutils/types/OrDeepPartial */ import type DeepPartial from './deep-partial' /** * Constructs a type representing all properties of `T` or recursively, a subset * of properties. * * @template T - Value type */ type OrDeepPartial<T> = DeepPartial<T> | T export { type OrDeepPartial as default }