@har-sdk/core
Version:
The base package can be used to import specification files (i.e. HAR, OAS and Postman Collection) and detect their type.
10 lines (9 loc) • 380 B
TypeScript
import { ImporterType } from './ImporterType';
import { OpenAPIV3 } from '../types';
import { BaseOASImporter } from './BaseOASImporter';
export declare class OASV3Importer extends BaseOASImporter<ImporterType.OASV3> {
private readonly SUPPORTED_OPENAPI_VERSION;
constructor();
get type(): ImporterType.OASV3;
isSupported(spec: any): spec is OpenAPIV3.Document;
}