io.input.email
Requests an email address.
Usage
- TypeScript
- JavaScript
const email = await io.input.email("Email address", {
helpText: "Please provide your work email.",
placeholder: "you@example.com",
});
const email = await io.input.email("Email address", {
helpText: "Please provide your work email.",
placeholder: "you@example.com",
});
interval.com
Props
- TypeScript
- JavaScript
defaultValue
Optional
string
Default value for the input.
disabled
Optional
boolean
Whether the input is disabled, preventing edits to the `defaultValue`.
helpText
Optional
string
Optional secondary label providing additional context. Supports inline markdown elements like bold, italics, and links.
placeholder
Optional
string
Text to display in the input when no value is set.
Returns
string
defaultValue
Optional
string
Default value for the input.
disabled
Optional
boolean
Whether the input is disabled, preventing edits to the `defaultValue`.
helpText
Optional
string
Optional secondary label providing additional context. Supports inline markdown elements like bold, italics, and links.
placeholder
Optional
string
Text to display in the input when no value is set.
Returns
string
Was this section useful?