11 lines
494 B
TypeScript
11 lines
494 B
TypeScript
import { ActionDef } from "oak-domain/lib/types/Action";
|
|
import { GenericAction } from "oak-domain/lib/actions/action";
|
|
export declare type IState = 'active' | 'applied' | 'abandoned' | string;
|
|
export declare type IAction = 'apply' | 'abandon' | string;
|
|
export declare type ParticularAction = IAction;
|
|
export declare type Action = GenericAction | ParticularAction | string;
|
|
export declare const actions: string[];
|
|
export declare const ActionDefDict: {
|
|
iState: ActionDef<string, string>;
|
|
};
|