@prismicio/client
Version:
The official JavaScript + TypeScript client library for Prismic
18 lines (16 loc) • 431 B
text/typescript
import { CustomTypeModelFieldType } from "./types.cjs";
//#region src/types/model/geoPoint.d.ts
/**
* A geopoint custom type field.
*
* More details: {@link https://prismic.io/docs/geopoint}
*/
interface CustomTypeModelGeoPointField {
type: typeof CustomTypeModelFieldType.GeoPoint;
config?: {
label?: string | null;
};
}
//#endregion
export { CustomTypeModelGeoPointField };
//# sourceMappingURL=geoPoint.d.cts.map