7 lines
347 B
TypeScript
7 lines
347 B
TypeScript
import { SysAccountOperType as sysAction } from "../../types/sysAccountOper";
|
|
import { GenericAction } from "oak-domain/lib/actions/action";
|
|
export type ParticularAction = sysAction | 'deposit' | 'tax';
|
|
export declare const actions: string[];
|
|
export type Action = GenericAction | ParticularAction | string;
|
|
export declare const actionDefDict: {};
|