@ondewo/csi-client-typescript
Version:
ONDEWO Conversation System Integration (CSI) Client library for Typescript
27 lines (19 loc) • 717 B
TypeScript
import * as jspb from 'google-protobuf'
export class LatLng extends jspb.Message {
getLatitude(): number;
setLatitude(value: number): LatLng;
getLongitude(): number;
setLongitude(value: number): LatLng;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): LatLng.AsObject;
static toObject(includeInstance: boolean, msg: LatLng): LatLng.AsObject;
static serializeBinaryToWriter(message: LatLng, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): LatLng;
static deserializeBinaryFromReader(message: LatLng, reader: jspb.BinaryReader): LatLng;
}
export namespace LatLng {
export type AsObject = {
latitude: number,
longitude: number,
}
}