wit-component 0.17.0

Tooling for working with `*.wit` and component files together.
Documentation
package foo:foo

interface other {
  record name {
    f: u8,
  }
}

interface bar {
  use other.{name as the-name}

  enum name {
    a,
  }
}

interface foo {
  use bar.{the-name}
}