feat(interface/input): minLength & maxLength option (#286)

This commit is contained in:
Lockwood
2023-05-08 23:00:47 +01:00
committed by GitHub
parent 1d65379fc0
commit 9a0fc24e69
2 changed files with 6 additions and 0 deletions

View File

@@ -21,6 +21,8 @@ type BaseField<T, U> = {
export interface IInput extends BaseField<'input', string> {
password?: boolean;
min?: number;
max?: number;
}
export interface ICheckbox {