@mescius/dspdfviewer
Version:
Document Solutions PDF Viewer
24 lines (23 loc) • 719 B
TypeScript
//@ts-ignore
import React from 'react';
import { CancelableEditorBase } from './CancelableEditorBase';
export declare class ChoiceOptionsEditor extends CancelableEditorBase {
private _changedValue;
private _contentElement;
//@ts-ignore
getEditorControls(): JSX.Element[];
onApply(): void;
onCancel(): void;
setControlsVisibility(isVisible: boolean): void;
getEditButtonLabel(): string;
protected isValueDirty(): boolean;
onDelete(index: any): void;
onAdd(): void;
onReorder: (value: any) => void;
createEditor: (value: {
displayValue: string;
exportValue: string;
//@ts-ignore
//@ts-ignore
}, index: number) => React.JSX.Element;
}