Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/interfaces/IGeolocation.ts
1028 views
1
export default interface IGeolocation {
2
latitude: number;
3
longitude: number;
4
accuracy?: number;
5
}
6
7