Type Alias Maybe<T>

Maybe: T | null | undefined

Represents a value that could be of type T or null or undefined.

Type Parameters

  • T

    Type that could be null or undefined.