import type { EmptyObjectField, FieldState } from "./types"; /** * A Geopoint field. * * @typeParam State - State of the field which determines its shape. * @see More details: {@link https://prismic.io/docs/core-concepts/geopoint} */ export type GeoPointField = State extends "empty" ? EmptyObjectField : { latitude: number; longitude: number; };