Files
speckle-server/packages/ui-components/src/helpers/layout/components.ts
T
Kristaps Fabians Geikins 1249d5115f fix: improvements not really related to "guest role" launch (#1773)
* fix: issues not really caused by guest role changes

* tippy types fix
2023-08-25 09:53:26 +03:00

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
}