UNPKG

@thisisagile/easy

Version:

Straightforward library for building domain-driven microservice architectures

12 lines (11 loc) 313 B
import { HttpVerb } from './HttpVerb'; import { RequestOptions } from './RequestOptions'; import type { Uri } from '../types/Uri'; export type Request = { uri: Uri; verb: HttpVerb; body?: unknown; transform?: (r: any) => any; transformError?: (r: any) => any; options?: RequestOptions; };