UNPKG

scriptable-testlab

Version:

A lightweight, efficient tool designed to manage and update scripts for Scriptable.

7 lines (5 loc) 169 B
/** * Represents the accuracy level of location services */ type LocationAccuracy = 'best' | 'high' | 'medium' | 'low' | 'reduced'; export type { LocationAccuracy };