@ondewo/csi-client-nodejs
Version:
ONDEWO Communication System Integration (CSI) Client library for Nodejs
31 lines (25 loc) • 1.04 kB
TypeScript
// package: google.protobuf
// file: google/protobuf/duration.proto
/* tslint:disable */
/* eslint-disable */
import * as jspb from "google-protobuf";
export class Duration extends jspb.Message {
getSeconds(): number;
setSeconds(value: number): Duration;
getNanos(): number;
setNanos(value: number): Duration;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): Duration.AsObject;
static toObject(includeInstance: boolean, msg: Duration): Duration.AsObject;
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
static serializeBinaryToWriter(message: Duration, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): Duration;
static deserializeBinaryFromReader(message: Duration, reader: jspb.BinaryReader): Duration;
}
export namespace Duration {
export type AsObject = {
seconds: number,
nanos: number,
}
}