UNPKG

wiremock-rest-client

Version:

Lightweight REST client to interact with a running WireMock server

12 lines (11 loc) 290 B
import { DelayDistribution } from './delay-distribution.model'; /** * This file was automatically generated. DO NOT MODIFY IT BY HAND. */ /** * Fixed delay */ export interface FixedDelay { fixedDelay?: number; } export declare type DelayDefinition = FixedDelay | DelayDistribution;