Files
cli/vendor/wit-component/tests/components/async-streams-and-futures/component.wit.print

10 lines
225 B
Plaintext

package root:component;
world root {
import foo:foo/bar;
import foo: func(x: future<future<u32>>, y: u32) -> stream<string>;
export foo: func(x: future<future<u32>>, y: u32) -> stream<string>;
export foo:foo/bar;
}