feat(types): add value to InputTextComponent (#2026)

This commit is contained in:
ITOH
2022-02-09 20:08:49 +01:00
committed by GitHub
parent 6c500f2d69
commit 75a8aaa064

View File

@@ -19,4 +19,6 @@ export interface InputTextComponent {
maxLength?: number;
/** Whether or not this input is required. */
required?: boolean;
/** Pre-filled value for input text. */
value?: string;
}