Interface OutputConstructor

Static side of the [Output] type. Can be used to [create] Outputs as well as test arbitrary values to see if they are [Output]s.

interface OutputConstructor {
    create<T>(val): Output<Unwrap<T>>;
    create<T>(val): Output<undefined | Unwrap<T>>;
    isInstance<T>(obj): obj is Output<T>;
}

Methods

Generated using TypeDoc