Files

7 lines
104 B
TypeScript

import type { ITab } from './tab.js';
export interface IMenuGroup {
name?: string;
tabs: ITab[];
}