Type alias TUnsafe<T>

TUnsafe<T>: undefined | TNullable<T>

Type Parameters

  • T

    The type that the variable can hold, besides being null or undefined.

Description

Represents a type that can be undefined, null, or a specific type. This generic type extends the concept of TNullable by also allowing the variable to be undefined, providing flexibility for optional values.

Generated using TypeDoc