shared_types.mx raw

   1  package types
   2  
   3  type Type interface {
   4  	Underlying() Type
   5  	String() string
   6  }
   7