UNPKG

@ntrip/caster

Version:
19 lines (18 loc) 655 B
import { SingleConnectionTransport } from '../transport'; import { CasterTransportDefinition, CasterTransportInterface } from '../../caster'; export interface FileTransportOptions { type: 'server' | 'client'; source: string; mountpoint: string; input?: string; output?: string; str?: string; gga?: string; } export declare class FileTransport extends SingleConnectionTransport { private readonly options; protected constructor(manager: CasterTransportInterface, options: FileTransportOptions); static new(options: FileTransportOptions): CasterTransportDefinition; open(): void; get description(): string; }