Files
cli/vendor/wit-component/tests/components/bare-funcs/component.wit.print

10 lines
169 B
Plaintext
Raw Normal View History

package root:component;
world root {
import foo: func();
import bar: func() -> string;
export baz: func();
export foo2: func(x: string) -> option<list<u8>>;
}