Module
Presto.Core.Types.Language.Interaction
- Package
- purescript-presto
- Repository
- juspay/purescript-presto
#Interaction Source
type Interaction s = Free InteractionF s
Free monadic Interaction type. Denotes a request-response interaction.
#interactConv Source
interactConv :: forall err s b a. Interact err a b => a -> (b -> Either err s) -> Interaction (Either err s)
#defaultInteract Source
defaultInteract :: forall b a. Encode a => Decode b => a -> Interaction (Either Error b)
- Modules
- Presto.
Core. Flow - Presto.
Core. Language. Runtime. API - Presto.
Core. Language. Runtime. Interpreter - Presto.
Core. LocalStorage - Presto.
Core. Operators - Presto.
Core. Types. API - Presto.
Core. Types. Language. APIInteract - Presto.
Core. Types. Language. Flow - Presto.
Core. Types. Language. Interaction - Presto.
Core. Types. Language. Storage - Presto.
Core. Types. Permission - Presto.
Core. Utils. Encoding