Files
npm-core-sdk/view.client.ts
2025-11-18 13:55:13 +00:00

38 lines
1.6 KiB
TypeScript

// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name,keep_enum_prefix
// @generated from protobuf file "view.proto" (package "api", syntax proto3)
// tslint:disable
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import { ViewService } from "./view";
import { stackIntercept } from "@protobuf-ts/runtime-rpc";
import type { GetViewFieldsResult } from "./view";
import type { GetViewFieldsRequest } from "./view";
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
/**
* @generated from protobuf service api.ViewService
*/
export interface IViewServiceClient {
/**
* @generated from protobuf rpc: GetViewFields
*/
getViewFields(input: GetViewFieldsRequest, options?: RpcOptions): UnaryCall<GetViewFieldsRequest, GetViewFieldsResult>;
}
/**
* @generated from protobuf service api.ViewService
*/
export class ViewServiceClient implements IViewServiceClient, ServiceInfo {
typeName = ViewService.typeName;
methods = ViewService.methods;
options = ViewService.options;
constructor(private readonly _transport: RpcTransport) {
}
/**
* @generated from protobuf rpc: GetViewFields
*/
getViewFields(input: GetViewFieldsRequest, options?: RpcOptions): UnaryCall<GetViewFieldsRequest, GetViewFieldsResult> {
const method = this.methods[0], opt = this._transport.mergeOptions(options);
return stackIntercept<GetViewFieldsRequest, GetViewFieldsResult>("unary", this._transport, method, opt, input);
}
}