Files
elm-0.19-workshop/intro/part9/src/Ports.elm
Richard Feldman d57dec1681 Rename more stuff
2018-08-05 04:49:15 -04:00

20 lines
304 B
Elm

port module Ports exposing (..)
import Json.Encode exposing (Value)
{- TODO This port is defined wrong!
See the compiler error to figure out what it should be.
-}
port storeBlah : String -> Cmd msg
{- TODO Add another port here.
See the compiler error to figure out what it should be.
-}