Use Deno with Rescript 馃
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 18 lines 358 B view raw
1module Types = { 2 module Reader = { 3 type t 4 @module("jsr:@std/io/types") 5 external read: Uint8Array.t => Promise.t<option<int>> = "read" 6 } 7} 8 9module Buffer = { 10 type t 11 12 @new @module("jsr:@std/io") 13 external new: Uint8Array.t => t = "Buffer" 14 15 @send external empty: t => bool = "empty" 16 17 @send external bytes: t => Uint8Array.t = "bytes" 18}