2025-12-29 01:20:24 +00:00
|
|
|
import type { IMenuItem } from './tab.js';
|
2025-12-08 12:04:01 +00:00
|
|
|
|
|
|
|
|
export interface IMenuGroup {
|
2025-12-29 01:20:24 +00:00
|
|
|
name: string;
|
|
|
|
|
items: IMenuItem[];
|
|
|
|
|
collapsed?: boolean;
|
|
|
|
|
iconName?: string;
|
2025-12-08 12:04:01 +00:00
|
|
|
}
|