all repos

onasty @ cbf53ca

a one-time notes service

onasty/web/src/Ports.elm(view raw)

1
2
3
4
5
6
7
8
9
port module Ports exposing (sendToClipboard, sendToLocalStorage)

import Json.Encode


port sendToLocalStorage : { key : String, value : Json.Encode.Value } -> Cmd msg


port sendToClipboard : String -> Cmd msg