repos
/
moxie
/
pkg
/
typeapi
/ typeapi.mx
typeapi.mx
raw
1
package typeapi
2
3
type Type interface {
4
Underlying() Type
5
String() string
6
}
7