Uneventful
    Preparing search index...

    Type Alias ValueResult<T>

    A JobResult that indicates the job was ended via a return() value.

    type ValueResult<T> = {
        err: undefined;
        op: "next";
        val: T;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    err: undefined
    op: "next"
    val: T