Interface ValidatorSystemConstructor
interface ValidatorSystemConstructor {
new ValidatorSystemConstructornew (options?: {
constrain?: boolean;
element?: HTMLElement;
enabled?: boolean;
height?: number;
lock?: boolean;
width?: number;
}): ValidatorSystem;
}
new ValidatorSystemConstructornew (options?: {
constrain?: boolean;
element?: HTMLElement;
enabled?: boolean;
height?: number;
lock?: boolean;
width?: number;
}): ValidatorSystem;
}
Index
Constructors
Constructors
constructor
- new
Validator (options?): ValidatorSystemSystem Constructor Parameters
Optional
options: {
constrain?: boolean;
element?: HTMLElement;
enabled?: boolean;
height?: number;
lock?: boolean;
width?: number;
}Initial options.
Optional
constrain?: booleanConstrain state.
Optional
element?: HTMLElementTarget element.
Optional
enabled?: booleanEnabled state.
Optional
height?: numberManual height.
Optional
lock?: booleanLock parameters from being set.
Optional
width?: numberManual width.
Returns ValidatorSystem
Describes the constructor function for an ValidatorSystem implementation.