mobilizon.chapril.org-mobil.../js/src/types/user-location.model.ts
Thomas Citharel ee20e03cc2
Migrate to Vue 3 and Vite
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-08-11 16:46:31 +02:00

11 lines
242 B
TypeScript

import { PictureInformation } from "./picture";
export type LocationType = {
lat: number | undefined;
lon: number | undefined;
name: string | undefined;
picture?: PictureInformation;
isIPLocation?: boolean;
accuracy?: number;
};