UNPKG

209 BTypeScriptView Raw
1import { ActionOptions } from './ActionOptions';
2export interface ActionDisplay {
3 id: string;
4 data: {
5 name: string;
6 args: any[];
7 };
8 count: number;
9 options: ActionOptions;
10}