lml-main
Version:
This is now a mono repository published into many standalone packages.
18 lines (17 loc) • 366 B
TypeScript
export declare const mockAddress: () => {
country: string;
town: string;
streets: string[];
postcode: string;
};
export declare const mockPosition: () => {
type: string;
coordinates: {
longitude: number;
latitude: number;
};
};
export declare const mockCoordinates: () => {
longitude: number;
latitude: number;
};