@vepler/schools-types
Version:
TypeScript type definitions for Vepler Schools Service
15 lines (14 loc) • 330 B
TypeScript
/**
* Point Model Interface
*
* Represents a geographic point with coordinates.
*/
/**
* Geographic point interface using GeoJSON format
*/
export interface IPoint {
/** Type of the geographic point, always 'Point' */
type: 'Point';
/** Coordinates as [longitude, latitude] array */
coordinates: number[];
}