blob: caa0b288f214fd44f3390190c7b42a7a637b4a72 [file] [log] [blame]
package differ
// NestingMode is a wrapper around a string type to describe the various
// different kinds of nesting modes that can be applied to nested blocks and
// objects.
type NestingMode string
const (
nestingModeSet NestingMode = "set"
nestingModeList NestingMode = "list"
nestingModeMap NestingMode = "map"
nestingModeSingle NestingMode = "single"
nestingModeGroup NestingMode = "group"
)