RocketChat/Rocket.Chat

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

Summary

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

export type RadioButtonElement = Actionable<{
    type: 'radio_button';
    options: Option[];
    initialOption?: Option;
}>;