7 lines
295 B
TypeScript
7 lines
295 B
TypeScript
import { GenericAction } from "oak-domain/lib/actions/action";
|
|
export type IAction = 'undo' | 'redo' | string;
|
|
export type ParticularAction = IAction;
|
|
export declare const actions: string[];
|
|
export type Action = GenericAction | ParticularAction | string;
|
|
export declare const actionDefDict: {};
|