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