UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

24 lines (23 loc) 631 B
import { NamedFunction0 } from './_Base'; import { Ref } from '@vue/reactivity'; interface lngLat { lng: number; lat: number; } export declare class geolocationCurrentPositionRef extends NamedFunction0 { static type(): string; func(): Ref<lngLat>; } export declare class geolocationLatitude extends NamedFunction0 { static type(): string; func(): number; } export declare class geolocationLongitude extends NamedFunction0 { static type(): string; func(): number; } export declare class geolocationGetCurrentPosition extends NamedFunction0 { static type(): string; func(): void; } export {};