forked from potsda.mn/mobilizon
2e72f6faf4
yarn v1 is being deprecated and starts to have some issues Signed-off-by: Thomas Citharel <tcit@tcit.fr>
11 lines
242 B
TypeScript
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;
|
|
};
|