wit-component 0.246.2

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

interface name {
  variant name2 {
    num(u16),
    strs(list<string>),
  }

  variant name {
    strs(list<string>),
  }
}

world module {
  import name;
  use name.{name};

  export name;
}