wit-bindgen-cli 0.57.1

CLI tool to generate bindings for WIT documents and the component model.
package my:strings;

world runner {
  import cat: interface {
    type my-string = string;
    foo: func(x: my-string);
    bar: func() -> my-string;
  }

  export run: func();
}

world test {
  export cat: interface {
    type my-string = string;
    foo: func(x: my-string);
    bar: func() -> my-string;
  }
}