params.TextInput interface

指定应在部署时提示用户以交互方式输入参数的值来确定参数的值。将重试与提供的 verificationRegex 不匹配的输入(如果存在)。

签名

export interface TextInput<T = unknown> 

属性

属性 类型 说明
文本 { example?: string;VerificationRegex?:字符串 |正则表达式;VerificationErrorMessage?:字符串;}

params.TextInput.text

签名

text: {
        example?: string;
        validationRegex?: string | RegExp;
        validationErrorMessage?: string;
    };