@prismicio/client
Version:
The official JavaScript + TypeScript client library for Prismic
13 lines (12 loc) • 314 B
TypeScript
import type { CustomTypeModelFieldType } from "./types";
/**
* A geopoint custom type field.
*
* More details: {@link https://prismic.io/docs/geopoint}
*/
export interface CustomTypeModelGeoPointField {
type: typeof CustomTypeModelFieldType.GeoPoint;
config?: {
label?: string | null;
};
}