UNPKG

armisa-models

Version:
19 lines (18 loc) 689 B
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; }