Skip to content

Type Alias: OperationResponder

ts
type OperationResponder = 
  | ((call) => 
  | OperationResponse
  | Promise<OperationResponse>)
  | OperationResponse;

Defined in: src/testing/FakeInstance.ts:85