dotting
Version:
Dotting is a pixel art editor component library for react
9 lines (8 loc) • 330 B
TypeScript
import { Action, ActionType } from "./Action";
import { ColorChangeItem } from "../components/Canvas/types";
export declare class ColorChangeAction extends Action {
type: ActionType;
data: Array<ColorChangeItem>;
constructor(data: Array<ColorChangeItem>, layerId: string);
createInverseAction(): Action;
}