UNPKG

echofi-client

Version:

A comprehensive TypeScript/JavaScript client library for EchoFi services with automatic gRPC-Web code generation, unified service access, and real-time WebSocket communication.

35 lines (25 loc) 891 B
import * as jspb from 'google-protobuf' export class Param extends jspb.Message { getParamKey(): string; setParamKey(value: string): Param; getParamValue(): string; setParamValue(value: string): Param; getDescription(): string; setDescription(value: string): Param; getUpdatedAt(): number; setUpdatedAt(value: number): Param; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): Param.AsObject; static toObject(includeInstance: boolean, msg: Param): Param.AsObject; static serializeBinaryToWriter(message: Param, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): Param; static deserializeBinaryFromReader(message: Param, reader: jspb.BinaryReader): Param; } export namespace Param { export type AsObject = { paramKey: string, paramValue: string, description: string, updatedAt: number, } }