Files

9 lines
158 B
TypeScript
Raw Permalink Normal View History

2026-01-06 02:24:12 +00:00
import type { IMenuItem } from './tab.js';
export interface IMenuGroup {
name: string;
items: IMenuItem[];
collapsed?: boolean;
iconName?: string;
}