armisa-models
Version:
models of armisa!
22 lines (21 loc) • 775 B
TypeScript
import { BaseSelfControl } from './BaseSelfControl';
export declare class SelfEmail extends BaseSelfControl<string, string, string, HTMLInputElement> {
#private;
minLength: number | undefined;
maxLength: number | undefined;
private validateNormal;
private validateRequired;
isValueEmpty: () => boolean;
isValueNotEmpty: () => boolean;
validate: () => void;
cleaningClassInitializer: () => void;
refreshHasChange: () => void;
restartDefaultValue: () => void;
get value(): string;
set value(value: string);
setValue: (value: string) => void;
deserialize: (value: string) => void;
constructor(value: string);
static empty(): SelfEmail;
static deserialize(value?: string): SelfEmail;
}