15 lines
260 B
TypeScript
15 lines
260 B
TypeScript
/* tabsMenuProps */
|
|
export interface TabsMenuProps {
|
|
icon: string;
|
|
title: string;
|
|
path: string;
|
|
name: string;
|
|
close: boolean;
|
|
}
|
|
|
|
/* TabsState */
|
|
export interface TabsState {
|
|
tabsMenuList: TabsMenuProps[];
|
|
isSubscribeAdd: Boolean;
|
|
}
|