Files
cli/vendor/wit-component/tests/interfaces/exports.wit

14 lines
155 B
Plaintext

package foo:foo;
interface foo {
record my-struct {
a: u32,
}
my-function: func(a: my-struct) -> string;
}
world export-foo {
export foo;
}