UNPKG

@graphql-mesh/transport-thrift

Version:
8 lines (7 loc) 557 B
import { ThriftClient } from '@creditkarma/thrift-server-core'; import type { GraphQLThriftAnnotations, TypeMap } from './types.cjs'; interface IGraphQLThriftClient extends ThriftClient { doRequest(methodName: string, args: any, fields: TypeMap, context?: any): Promise<any>; } export declare function createGraphQLThriftClient<Context = any>({ location, headers, options: { clientAnnotations: { serviceName, annotations, methodNames, methodAnnotations, methodParameters, }, topTypeMap, }, }: GraphQLThriftAnnotations): IGraphQLThriftClient; export {};