lml-main
Version:
This is now a mono repository published into many standalone packages.
20 lines • 531 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.mockAddress = function () { return ({
country: 'GBR',
town: 'London',
streets: [
'58-62 Scrutton St',
'Shoreditch',
],
postcode: 'EC2A 4PH',
}); };
exports.mockPosition = function () { return ({
type: 'Point',
coordinates: exports.mockCoordinates(),
}); };
exports.mockCoordinates = function () { return ({
longitude: -0.0831431,
latitude: 51.5233833,
}); };
//# sourceMappingURL=address.js.map