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 Outputs.

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