@har-sdk/openapi-sampler
Version:
[](https://codeclimate.com/github/NeuraLegion/har-sdk/maintainability) [ • 303 B
TypeScript
import { Options, Specification } from '../traverse';
import { OpenAPIV2, OpenAPIV3 } from '@har-sdk/core';
export declare type OpenAPISchema = OpenAPIV3.SchemaObject | OpenAPIV2.SchemaObject;
export interface Sampler {
sample(schema: OpenAPISchema, spec?: Specification, options?: Options): any;
}