UNPKG

unmock-core

Version:

[![npm](https://img.shields.io/npm/v/unmock-core.svg)][npmjs] [![CircleCI](https://circleci.com/gh/unmock/unmock-js.svg?style=svg)](https://circleci.com/gh/unmock/unmock-js) [![codecov](https://codecov.io/gh/unmock/unmock-js/branch/dev/graph/badge.svg)](h

20 lines 603 B
import { HTTPMethod } from "../../interfaces"; import { Dereferencer, IStateInput, Operation, Paths } from "../interfaces"; export interface IStateUpdate { stateInput: IStateInput; paths: Paths; dereferencer: Dereferencer; serviceName: string; schemaEndpoint: string; } export interface IOperationForStateUpdate { endpoint: string; method: HTTPMethod; operation: Operation; } export declare type OperationsForStateUpdate = IOperationForStateUpdate[]; export interface IValidationError { msg: string; nestedLevel: number; } //# sourceMappingURL=interfaces.d.ts.map