///
///
import * as thrift from "@creditkarma/thrift-server-core";
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 IDisableArticleSwipe__Args {
disableSwipe: boolean;
}
export interface IDisableArticleSwipe__ArgsArgs {
disableSwipe: boolean;
}
export declare const DisableArticleSwipe__ArgsCodec: thrift.IStructCodec;
export declare class DisableArticleSwipe__Args extends thrift.StructLike implements IDisableArticleSwipe__Args {
disableSwipe: boolean;
readonly _annotations: thrift.IThriftAnnotations;
readonly _fieldAnnotations: thrift.IFieldAnnotations;
constructor(args: IDisableArticleSwipe__ArgsArgs);
static read(input: thrift.TProtocol): DisableArticleSwipe__Args;
static write(args: IDisableArticleSwipe__ArgsArgs, output: thrift.TProtocol): void;
write(output: thrift.TProtocol): void;
}
export interface IDisableArticleSwipe__Result {
success?: void;
}
export interface IDisableArticleSwipe__ResultArgs {
success?: void;
}
export declare const DisableArticleSwipe__ResultCodec: thrift.IStructCodec;
export declare class DisableArticleSwipe__Result extends thrift.StructLike implements IDisableArticleSwipe__Result {
success?: void;
readonly _annotations: thrift.IThriftAnnotations;
readonly _fieldAnnotations: thrift.IFieldAnnotations;
constructor(args?: IDisableArticleSwipe__ResultArgs);
static read(input: thrift.TProtocol): DisableArticleSwipe__Result;
static write(args: IDisableArticleSwipe__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;
};
disableArticleSwipe(disableSwipe: boolean, context?: Context): Promise;
}
export interface IHandler {
disableArticleSwipe(disableSwipe: boolean, context?: Context): void | 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_disableArticleSwipe(requestId: number, input: thrift.TProtocol, output: thrift.TProtocol, context: Context): Promise;
}