Files
cli/vendor/wit-component/tests/components/import-export/module.wit

15 lines
221 B
Plaintext
Raw Normal View History

package foo:foo;
world module {
import foo: interface {
a: func() -> string;
}
export bar: interface {
a: func();
b: func() -> string;
}
export a: func(x: string) -> tuple<string, u32, string>;
}