all repos

onasty @ 49ba283475c3e2ad4a464b4d2f923aad6b161b50

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