UNPKG

@amadeus-it-group/kassette

Version:

Development server, used mainly for testing, which proxies requests and is able to easily manage local mocks.

8 lines (7 loc) 264 B
export interface FileFormat { stringify(content: any): Buffer; parse(content: Buffer): any; } export declare const jsonFormat: FileFormat; export declare const yamlFormat: FileFormat; export declare const detectHarFormat: (fileName: string) => FileFormat;