wit-component 0.250.0

Tooling for working with `*.wit` and component files together.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package root:component;

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

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