///
///
import * as thrift from "@creditkarma/thrift-server-core";
import * as NativePlatform from "./NativePlatform";
export declare const serviceName: string;
export declare const annotations: thrift.IThriftAnnotations;
export declare const methodAnnotations: thrift.IMethodAnnotations;
export declare const methodNames: Array;
export declare const methodParameters: {
[methodName: string]: number;
};
export interface IGetNativePlatform__Args {
}
export interface IGetNativePlatform__ArgsArgs {
}
export declare const GetNativePlatform__ArgsCodec: thrift.IStructCodec;
export declare class GetNativePlatform__Args extends thrift.StructLike implements IGetNativePlatform__Args {
readonly _annotations: thrift.IThriftAnnotations;
readonly _fieldAnnotations: thrift.IFieldAnnotations;
constructor(args?: IGetNativePlatform__ArgsArgs);
static read(input: thrift.TProtocol): GetNativePlatform__Args;
static write(args: IGetNativePlatform__ArgsArgs, output: thrift.TProtocol): void;
write(output: thrift.TProtocol): void;
}
export interface IGetNativePlatform__Result {
success?: NativePlatform.NativePlatform;
}
export interface IGetNativePlatform__ResultArgs {
success?: NativePlatform.NativePlatform;
}
export declare const GetNativePlatform__ResultCodec: thrift.IStructCodec;
export declare class GetNativePlatform__Result extends thrift.StructLike implements IGetNativePlatform__Result {
success?: NativePlatform.NativePlatform;
readonly _annotations: thrift.IThriftAnnotations;
readonly _fieldAnnotations: thrift.IFieldAnnotations;
constructor(args?: IGetNativePlatform__ResultArgs);
static read(input: thrift.TProtocol): GetNativePlatform__Result;
static write(args: IGetNativePlatform__ResultArgs, output: thrift.TProtocol): void;
write(output: thrift.TProtocol): void;
}
export declare class Client extends thrift.ThriftClient {
static readonly serviceName: string;
static readonly annotations: thrift.IThriftAnnotations;
static readonly methodAnnotations: thrift.IMethodAnnotations;
static readonly methodNames: Array;
readonly _serviceName: string;
readonly _annotations: thrift.IThriftAnnotations;
readonly _methodAnnotations: thrift.IMethodAnnotations;
readonly _methodNames: Array;
readonly _methodParameters?: {
[methodName: string]: number;
};
getNativePlatform(context?: Context): Promise;
}
export interface IHandler {
getNativePlatform(context?: Context): NativePlatform.NativePlatform | Promise;
}
export declare class Processor extends thrift.ThriftProcessor> {
protected readonly _handler: IHandler;
static readonly serviceName: string;
static readonly annotations: thrift.IThriftAnnotations;
static readonly methodAnnotations: thrift.IMethodAnnotations;
static readonly methodNames: Array;
readonly _serviceName: string;
readonly _annotations: thrift.IThriftAnnotations;
readonly _methodAnnotations: thrift.IMethodAnnotations;
readonly _methodNames: Array;
constructor(handler: IHandler);
process(input: thrift.TProtocol, output: thrift.TProtocol, context: Context): Promise;
process_getNativePlatform(requestId: number, input: thrift.TProtocol, output: thrift.TProtocol, context: Context): Promise;
}