RocketChat/Rocket.Chat

View on GitHub
packages/ui-kit/src/blocks/elements/ExperimentalTabElement.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { Actionable } from '../Actionable';
import type { TextObject } from '../TextObject';

export type ExperimentalTabElement = Actionable<{
    type: 'tab';
    title: TextObject;
    disabled?: boolean;
    selected?: boolean;
}>;