wit-component 0.246.2

Tooling for working with `*.wit` and component files together.
Documentation
package foo:root;
package foo:bar {
  world module {
    import bar: interface {
      record x {
          a: u8
      }

      bar1: func(x: string);
      bar2: func(x: x);
    }
  }
}

package baz:qux {
  world module {
    import qux: interface {
      type x = s8;

      qux1: func(x: list<string>);
      qux2: func();
      qux3: func(x: x);
    }
  }
}