2e72f6faf4
yarn v1 is being deprecated and starts to have some issues Signed-off-by: Thomas Citharel <tcit@tcit.fr>
19 lines
438 B
TypeScript
19 lines
438 B
TypeScript
declare global {
|
|
interface GeolocationCoordinates {
|
|
readonly accuracy: number;
|
|
readonly altitude: number | null;
|
|
readonly altitudeAccuracy: number | null;
|
|
readonly heading: number | null;
|
|
readonly latitude: number;
|
|
readonly longitude: number;
|
|
readonly speed: number | null;
|
|
}
|
|
|
|
interface GeolocationPosition {
|
|
readonly coords: GeolocationCoordinates;
|
|
readonly timestamp: number;
|
|
}
|
|
}
|
|
|
|
export {};
|