unmock-core
Version:
[][npmjs] [](https://circleci.com/gh/unmock/unmock-js) [](h
20 lines • 603 B
TypeScript
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