dotting
Version:
Dotting is a pixel art editor component library for react
10 lines (9 loc) • 350 B
TypeScript
import { Action, ActionType } from "./Action";
export declare class LayerReorderAction extends Action {
type: ActionType;
layerId: string;
previousLayerIds: Array<string>;
reorderdLayerIds: Array<string>;
constructor(previousLayerIds: Array<string>, reorderdLayerIds: Array<string>);
createInverseAction(): Action;
}