10 lines
156 B
Go
10 lines
156 B
Go
package annotation
|
|
|
|
import "reflect"
|
|
|
|
var TypeAnnotationType = reflect.TypeOf((*TypeAnnotation)(nil)).Elem()
|
|
|
|
type TypeAnnotation interface {
|
|
Annotation
|
|
}
|