@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
15 lines • 467 B
TypeScript
import { OptionConfigParamTypeEnum } from '../../OptionConfigParamTypeEnum';
/** Option configuration constraints */
export interface Constraints {
/** Maximum number of items in value */
length?: number;
/** Maximum value */
maximum?: number;
/** Description of value */
message?: string;
/** Minimum value */
minimum?: number;
/** Type of value */
type?: OptionConfigParamTypeEnum;
}
//# sourceMappingURL=Constraints.d.ts.map