@buildkite/buildkite-sdk
    Preparing search index...

    Interface TextField

    interface TextField {
        default?: string;
        format?: string;
        hint?: string;
        key: string;
        required?: boolean | "true" | "false";
        text?: string;
    }
    Index

    Properties

    default?: string

    The value that is pre-filled in the text field

    format?: string

    The format must be a regular expression implicitly anchored to the beginning and end of the input and is functionally equivalent to the HTML5 pattern attribute.

    hint?: string

    The explanatory text that is shown after the label

    key: string

    The meta-data key that stores the field's input

    required?: boolean | "true" | "false"

    Whether the field is required for form submission

    text?: string

    The text input name