@creditkarma/thrift-server-core
Version:
Thrift core library in TypeScript
8 lines (7 loc) • 394 B
TypeScript
import { ITransportConstructor, TransportType } from '../types';
export * from './BufferedTransport';
export * from './TTransport';
export * from './ThriftFrameCodec';
export declare const supportedTransports: Array<string>;
export declare function isTransportSupported(transport: TransportType): boolean;
export declare function getTransport(transport?: TransportType): ITransportConstructor;