16 lines
259 B
TypeScript
16 lines
259 B
TypeScript
export enum GridListToggleValue {
|
|
Grid = 'grid',
|
|
List = 'list'
|
|
}
|
|
|
|
export type LayoutTabItem<I extends string = string> = {
|
|
title: string
|
|
id: I
|
|
}
|
|
|
|
export type LayoutMenuItem<I extends string = string> = {
|
|
title: string
|
|
id: I
|
|
disabled?: boolean
|
|
}
|