Files

7 lines
104 B
TypeScript
Raw Permalink Normal View History

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