29 lines
1.2 KiB
TypeScript
29 lines
1.2 KiB
TypeScript
import { Config, ConfigSDKType } from "./config";
|
|
import * as _m0 from "protobufjs/minimal";
|
|
import { DeepPartial } from "../../../helpers";
|
|
/** QueryConfigRequest is the Query/Config request type. */
|
|
export interface QueryConfigRequest {
|
|
}
|
|
/** QueryConfigRequest is the Query/Config request type. */
|
|
export interface QueryConfigRequestSDKType {
|
|
}
|
|
/** QueryConfigRequest is the Query/Config response type. */
|
|
export interface QueryConfigResponse {
|
|
/** config is the current app config. */
|
|
config?: Config;
|
|
}
|
|
/** QueryConfigRequest is the Query/Config response type. */
|
|
export interface QueryConfigResponseSDKType {
|
|
config?: ConfigSDKType;
|
|
}
|
|
export declare const QueryConfigRequest: {
|
|
encode(_: QueryConfigRequest, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): QueryConfigRequest;
|
|
fromPartial(_: DeepPartial<QueryConfigRequest>): QueryConfigRequest;
|
|
};
|
|
export declare const QueryConfigResponse: {
|
|
encode(message: QueryConfigResponse, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): QueryConfigResponse;
|
|
fromPartial(object: DeepPartial<QueryConfigResponse>): QueryConfigResponse;
|
|
};
|