export function isGeofenceArray()

in src/utils.ts [38:40]


export function isGeofenceArray(array: unknown): array is Geofence[] {
  return Array.isArray(array) && isGeofence(array[0]);
}