Interface ValidatorSystemConstructor
interface ValidatorSystemConstructor {
new ValidatorSystemConstructor(
options?: {
constrain?: boolean;
element?: HTMLElement;
enabled?: boolean;
height?: number;
lock?: boolean;
width?: number;
},
): ValidatorSystem;
}
new ValidatorSystemConstructor(
options?: {
constrain?: boolean;
element?: HTMLElement;
enabled?: boolean;
height?: number;
lock?: boolean;
width?: number;
},
): ValidatorSystem;
}
Constructors
constructor
-
new ValidatorSystemConstructor(
options?: {
constrain?: boolean;
element?: HTMLElement;
enabled?: boolean;
height?: number;
lock?: boolean;
width?: number;
},
): ValidatorSystemParameters
Optionaloptions: {
constrain?: boolean;
element?: HTMLElement;
enabled?: boolean;
height?: number;
lock?: boolean;
width?: number;
}Initial options.
-
Optionalconstrain?: booleanConstrain state.
-
Optionalelement?: HTMLElementTarget element.
-
Optionalenabled?: booleanEnabled state.
-
Optionalheight?: numberManual height.
-
Optionallock?: booleanLock parameters from being set.
-
Optionalwidth?: numberManual width.
-
Returns ValidatorSystem
Describes the constructor function for an ValidatorSystem implementation.