Function
watchPosition
(
options?:
| PositionOptions & {
readonly bufferSize?: number | undefined
}
| undefined
)
Source from the content-addressed store, hash-verified
| 129 | * @category accessors |
| 130 | */ |
| 131 | export const watchPosition = ( |
| 132 | options?: |
| 133 | | PositionOptions & { |
| 134 | readonly bufferSize?: number | undefined |
| 135 | } |
| 136 | | undefined |
| 137 | ): Stream.Stream<GeolocationPosition, GeolocationError, Geolocation> => |
| 138 | Stream.unwrap(Effect.map(Geolocation, (geolocation) => geolocation.watchPosition(options))) |
Callers
nothing calls this directly
Tested by
no test coverage detected