UNPKG

@creditkarma/thrift-server-hapi

Version:

A Hapi server plugin for the Apache Thrift protocol

7 lines (6 loc) 381 B
import { IThriftProcessor } from '@creditkarma/thrift-server-core'; import * as Hapi from '@hapi/hapi'; import { ICreateHapiServerOptions } from './types'; export * from './ThriftServerHapi'; export * from './types'; export declare function createThriftServer<TProcessor extends IThriftProcessor<Hapi.Request>>(options: ICreateHapiServerOptions<TProcessor>): Promise<Hapi.Server>;