RocketChat/Rocket.Chat

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

Summary

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

export type PlainTextInputElement = Actionable<{
    type: 'plain_text_input';
    placeholder?: PlainText;
    initialValue?: string;
    multiline?: boolean;
    minLength?: number;
    maxLength?: number;
}>;