/** * These properties make up an Editor component. */ export interface IEditor { /** * */ setValue(value: any): void; /** * */ getValue(): any; /** * */ validate(): boolean; /** * */ getErrors(): string[]; } export default IEditor;