Files
inji-wallet/shared/location.ios.ts
2022-09-16 14:45:58 +08:00

8 lines
159 B
TypeScript

export function checkLocation(onEnabled: () => void) {
onEnabled(); // iOS does not need location enabled
}
export function requestLocation() {
// pass
}