Type alias TNullable<T>

TNullable<T>: null | T

Type Parameters

  • T

    The type that can be assigned or null.

Description

Represents a type that can be null or a specific type. This generic type is used to define a variable that can either hold a value of type T or be null.

Generated using TypeDoc