* feat: show macro usage count * feat: show macro reference count only when ALT key hold down * fix: the macro reference help text
6 lines
93 B
TypeScript
6 lines
93 B
TypeScript
export interface MacroMenuItem {
|
|
id: number;
|
|
name: string;
|
|
usageCount: number;
|
|
}
|