Fork of daniellemaywood.uk/gleam — Wasm codegen work
1

Configure Feed

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

gleam / compiler-core / wit / zed_extension / 0.7.0 / common.wit
315 B 12 lines
1interface common { 2 /// A (half-open) range (`[start, end)`). 3 record range { 4 /// The start of the range (inclusive). 5 start: u32, 6 /// The end of the range (exclusive). 7 end: u32, 8 } 9 10 /// A list of environment variables. 11 type env-vars = list<tuple<string, string>>; 12}