wit-bindgen-cli 0.56.0

CLI tool to generate bindings for WIT documents and the component model.
package test:resource-into-inner;

interface to-test {
  resource thing {
    constructor(text: string);
  }

  test: func();
}

world test {
  export to-test;
}

world runner {
  import to-test;

  export run: func();
}