@dock365/reform-fabric-fields
Version:
fabric fields reform
10 lines (9 loc) • 366 B
TypeScript
import { IOptionsPickerOption } from "../IOptionsPickerMenuProps";
import { IColors } from "../../IOptionsPickerProps";
export interface IEditorProps {
toggleEdit?: () => void;
options: IOptionsPickerOption[];
availableColors: string[];
onSaveChanges?: (options: IOptionsPickerOption[], deletedIds: number[]) => void;
colors: IColors;
}