interface PaintBrushConfigs {
    container?: HTMLDivElement;
    currentColor: string;
    DPR?: number;
    onClickClose?: (() => void);
    onClickUndo?: (() => void);
    onExitText?: string;
    onUndoText?: string;
}

Properties

container?: HTMLDivElement
currentColor: string
DPR?: number
onClickClose?: (() => void)
onClickUndo?: (() => void)
onExitText?: string
onUndoText?: string