devtypes - v1.1.0
    Preparing search index...

    Type Alias Maybe<T>

    Maybe: T | null | undefined

    Optional value type.

    Type Parameters

    • T

      Value type

    Represents a value that may be null or undefined. Useful as a concise shorthand for optional union types.

    type A = Maybe< string >;
    // string | null | undefined