0 | module JS.ByteString 1 | 2 | import JS.Marshall 3 | 4 | %default total 5 | 6 | export 7 | data ByteString : Type where [external] 8 | 9 | export 10 | ToFFI ByteString ByteString where toFFI = id 11 | 12 | export 13 | FromFFI ByteString ByteString where fromFFI = Just 14 |