UNPKG

@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) 340 B
import { BaseImporter } from './BaseImporter'; import { ImporterType } from './ImporterType'; import { Har } from '../types'; export declare class HARImporter extends BaseImporter<ImporterType.HAR> { private readonly SUPPORTED_HAR_VERSION; constructor(); get type(): ImporterType.HAR; isSupported(spec: any): spec is Har; }