fix(structure): group components into groups inside the repo
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
export * from './tab.js';
|
||||
export * from './selectionoption.js';
|
||||
export * from './appbarmenuitem.js';
|
||||
export * from './menugroup.js';
|
||||
|
||||
6
ts_web/elements/interfaces/menugroup.ts
Normal file
6
ts_web/elements/interfaces/menugroup.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import type { ITab } from './tab.js';
|
||||
|
||||
export interface IMenuGroup {
|
||||
name?: string;
|
||||
tabs: ITab[];
|
||||
}
|
||||
Reference in New Issue
Block a user