This commit is contained in:
2026-01-06 02:24:12 +00:00
commit edea37a856
64 changed files with 18007 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import type { IMenuItem } from './tab.js';
export interface IMenuGroup {
name: string;
items: IMenuItem[];
collapsed?: boolean;
iconName?: string;
}