7 lines
104 B
TypeScript
7 lines
104 B
TypeScript
|
|
import type { ITab } from './tab.js';
|
||
|
|
|
||
|
|
export interface IMenuGroup {
|
||
|
|
name?: string;
|
||
|
|
tabs: ITab[];
|
||
|
|
}
|