1249d5115f
* fix: issues not really caused by guest role changes * tippy types fix
17 lines
286 B
TypeScript
17 lines
286 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
|
|
disabledTooltip?: string
|
|
}
|