armisa-models
Version:
models of armisa!
24 lines (23 loc) • 826 B
TypeScript
import { BaseSelfControl } from './BaseSelfControl';
export declare class SelfTime extends BaseSelfControl<string, string, string, HTMLInputElement> {
#private;
minValue: string | undefined;
maxValue: string | undefined;
private validateNormal;
private validateRequired;
private validateMinValue;
private validateMaxValue;
isValueEmpty: () => boolean;
isValueNotEmpty: () => boolean;
validate: () => void;
cleaningClassInitializer: () => void;
refreshHasChange: () => void;
restartDefaultValue: () => void;
get value(): any;
set value(value: any);
setValue: (value: string) => void;
deserialize: (value: string) => void;
constructor(value: string);
static empty(): SelfTime;
static deserialize(value?: string): SelfTime;
}