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

    Type Alias Undef<T>

    Undef: T | undefined

    Value can be T or undefined.

    Type Parameters

    • T

      The type of the value

    function demo(value: Undef<string>) {
    // value: string | undefined
    }

    v0.4.0