Constraints
interface Constraints {
readonly horizontal: ConstraintType;
readonly vertical: ConstraintType;
}
The resizing behavior of a layer when its containing frame is resized.
type ConstraintType = "MIN" | "CENTER" | "MAX" | "STRETCH" | "SCALE";