7 lines
310 B
TypeScript
7 lines
310 B
TypeScript
import { GenericAction } from "oak-domain/lib/actions/action";
|
|
export type IAction = 'wakeup' | 'cancel' | 'qrcode' | string;
|
|
export type ParticularAction = IAction;
|
|
export declare const actions: string[];
|
|
export type Action = GenericAction | ParticularAction | string;
|
|
export declare const actionDefDict: {};
|