@lyra/base
Version:
Lyra plugin containing the base components and roles for a Lyra configuration
21 lines (20 loc) • 355 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = {
title: 'Geographical Point',
name: 'geopoint',
type: 'object',
fields: [{
name: 'lat',
type: 'number',
title: 'Latitude',
required: true
}, {
name: 'lng',
type: 'number',
title: 'Longitude',
required: true
}]
};