export function isGeofence()

in src/utils.ts [30:36]


export function isGeofence(object: unknown): object is Geofence {
  return (
    object &&
    typeof (object as Geofence).id === "string" &&
    typeof (object as Geofence).geometry === "object"
  );
}