wit-component 0.250.0

Tooling for working with `*.wit` and component files together.
Documentation
package a:b;

world module {
  import a: interface {
    f: func();
  }
  import b: i;
  import c: i;

  export a: interface {
    f: func();
  }
  export b: i;
  export c: i;
}

interface i {
  f: func();
}