oak-domain/lib/base-app-domain/Log/Action.d.ts

7 lines
286 B
TypeScript

import { GenericAction } from "../../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: {};