UNPKG

jspurefix

Version:
11 lines (8 loc) 326 B
import { MsgTransport } from './factory' import { IMsgApplication } from './msg-application' export abstract class FixInitiator { protected constructor (public readonly application: IMsgApplication | null) { } public abstract connect (timeout: number): Promise<MsgTransport> public abstract end (): void }