UNPKG

jspurefix

Version:
16 lines (15 loc) 544 B
/// <reference types="node" /> import { IJsFixConfig } from '../../config'; import { IHttpAdapter } from './http-adapter'; import { IHtmlOptions } from './html-options'; export declare class HttpJsonSampleAdapter implements IHttpAdapter { readonly config: IJsFixConfig; private readonly logger; private readonly queue; private token; private readonly routes; constructor(config: IJsFixConfig); getOptions(data: Buffer): IHtmlOptions | null; endMessage(m: any): Buffer; beginMessage(msgType: string): void; }