@confluentinc/schemaregistry
Version:
Node.js client for Confluent Schema Registry
35 lines (34 loc) • 1.19 kB
TypeScript
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
import type { Message } from "@bufbuild/protobuf";
/**
* Describes the file google/type/latlng.proto.
*/
export declare const file_google_type_latlng: GenFile;
/**
* An object that represents a latitude/longitude pair. This is expressed as a
* pair of doubles to represent degrees latitude and degrees longitude. Unless
* specified otherwise, this must conform to the
* <a href="http://www.unoosa.org/pdf/icg/2012/template/WGS_84.pdf">WGS84
* standard</a>. Values must be within normalized ranges.
*
* @generated from message google.type.LatLng
*/
export type LatLng = Message<"google.type.LatLng"> & {
/**
* The latitude in degrees. It must be in the range [-90.0, +90.0].
*
* @generated from field: double latitude = 1;
*/
latitude: number;
/**
* The longitude in degrees. It must be in the range [-180.0, +180.0].
*
* @generated from field: double longitude = 2;
*/
longitude: number;
};
/**
* Describes the message google.type.LatLng.
* Use `create(LatLngSchema)` to create a new message.
*/
export declare const LatLngSchema: GenMessage<LatLng>;