@graphql-mesh/transport-thrift
Version:
8 lines (7 loc) • 551 B
TypeScript
import { ThriftClient } from '@creditkarma/thrift-server-core';
import { GraphQLThriftAnnotations, TypeMap } from './types.js';
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 {};