Skip to content

Type Alias: Responder

ts
type Responder = 
  | ((call) => 
  | FakeResponse
  | Promise<FakeResponse>)
  | FakeResponse;

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