Revision f6404bfad187372cf651ac538717fd51c67b2fff authored by Bogdan Matei on 13 January 2021, 10:56:09 UTC, committed by Bogdan Matei on 13 January 2021, 10:56:09 UTC
1 parent c040d36
Raw File
thresholds.cue
package panels

_thresholds: {
	// Threshold mode.
	mode: string | *"absolute"
	// Threshold steps.
	steps: [...{
		color: string
		value: number
	}]
}
back to top