Skip to main content Link Search Menu Expand Document (external link)

ScopedLookup overview

Added in v1.0.0


Table of contents


models

ScopedLookup (type alias)

Similar to Lookup, but executes the lookup function within a Scope.

Signature

export type ScopedLookup<Key, Environment, Error, Value> = (
  key: Key
) => Effect.Effect<Environment | Scope.Scope, Error, Value>

Added in v1.0.0