9 lines
145 B
Go
9 lines
145 B
Go
package packagejson
|
|
|
|
type TypeValidatedField interface {
|
|
IsPresent() bool
|
|
IsValid() bool
|
|
ExpectedJSONType() string
|
|
ActualJSONType() string
|
|
}
|