]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob - vendor/github.com/hashicorp/hil/eval_type.go
Initial transfer of provider code
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / hashicorp / hil / eval_type.go
1 package hil
2
3 //go:generate stringer -type=EvalType eval_type.go
4
5 // EvalType represents the type of the output returned from a HIL
6 // evaluation.
7 type EvalType uint32
8
9 const (
10 TypeInvalid EvalType = 0
11 TypeString EvalType = 1 << iota
12 TypeBool
13 TypeList
14 TypeMap
15 TypeUnknown
16 )