armisa-models
Version:
models of armisa!
19 lines (18 loc) • 689 B
TypeScript
import { BaseSelfControl } from './BaseSelfControl';
export declare class SelfImage extends BaseSelfControl<string, string, string, HTMLButtonElement> {
#private;
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(): SelfImage;
static deserialize(value?: string): SelfImage;
static createCopy(old: SelfImage): SelfImage;
}