RocketChat/Rocket.Chat

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

Summary

Maintainability
A
35 mins
Test Coverage
import type { Actionable } from '../Actionable';
import type { Option } from '../Option';

export type ToggleSwitchElement = Actionable<{
    type: 'toggle_switch';
    options: Option[];
    initialOptions?: Option[];
}>;