Files
agent/packages/uhk-web/src/app/models/macro-menu-item.ts
Róbert Kiss fef24613e4 feat: show macro usage count (#1030)
* feat: show macro usage count

* feat: show macro reference count only when ALT key hold down

* fix: the macro reference help text
2019-09-03 21:42:27 +02:00

6 lines
93 B
TypeScript

export interface MacroMenuItem {
id: number;
name: string;
usageCount: number;
}