@luolapeikko/ts-common
    Preparing search index...

    Type Alias Nullable<T>

    Nullable: T | null

    Value can be T or null;

    Type Parameters

    • T

      The type of the value

    function demo(value: Nullable<string>) {
    // value: string | null
    }

    v0.3.4