11 lines
464 B
TypeScript
11 lines
464 B
TypeScript
import { ActionDef } from "../../types/Action";
|
|
import { GenericAction, RelationAction } from "../../actions/action";
|
|
export type UserAction = 'mergeTo' | string;
|
|
export type UserState = 'normal' | 'merged' | string;
|
|
export type ParticularAction = UserAction;
|
|
export declare const actions: string[];
|
|
export type Action = GenericAction | ParticularAction | RelationAction | string;
|
|
export declare const ActionDefDict: {
|
|
userState: ActionDef<string, string>;
|
|
};
|