
This PR adds a simple API for working with processes to the extension API. The API is designed to mirror Rust's [`std::process::Command`](https://doc.rust-lang.org/std/process/struct.Command.html). Release Notes: - N/A
12 lines
315 B
Text
12 lines
315 B
Text
interface common {
|
|
/// A (half-open) range (`[start, end)`).
|
|
record range {
|
|
/// The start of the range (inclusive).
|
|
start: u32,
|
|
/// The end of the range (exclusive).
|
|
end: u32,
|
|
}
|
|
|
|
/// A list of environment variables.
|
|
type env-vars = list<tuple<string, string>>;
|
|
}
|