@jossmac/lil-libs
    Preparing search index...

    Type Alias Maybe<T>

    Maybe: T | undefined | null

    Union of T with null and undefined for values that may be absent.

    Type Parameters

    • T

      Underlying type when the value is present.

    type MaybeName = Maybe<string>;
    // ^? string | null | undefined