UNPKG

@zxh19890103/wik

Version:

The world-class JavaScript library for building large-scale digital warehouse both on 2D and 3D.

8 lines (7 loc) 231 B
import { IStateAction } from '../../interfaces'; export declare abstract class StateActionBase implements IStateAction { readonly tag: number; readonly isRedo = 0; abstract apply(): void; abstract revert(): void; }