Interface StreamRequest<I, O>

interface StreamRequest<I, O> {
    context?: object;
    input: I;
    output: PromiseWithResolvers<O>;
}

Type Parameters

  • I extends any[]
  • O = void

Properties

context?: object
input: I
output: PromiseWithResolvers<O>
""