seyfert
    Preparing search index...

    Function createStringOption

    • Type Parameters

      Parameters

      Returns {
          autocomplete?: AutocompleteCallback;
          choices?: C;
          description: string;
          description_localizations?:
              | null
              | Partial<
                  Record<
                      | "id"
                      | "en-US"
                      | "en-GB"
                      | "bg"
                      | "zh-CN"
                      | "zh-TW"
                      | "hr"
                      | "cs"
                      | "da"
                      | "nl"
                      | "fi"
                      | "fr"
                      | "de"
                      | "el"
                      | "hi"
                      | "hu"
                      | "it"
                      | "ja"
                      | "ko"
                      | "lt"
                      | "no"
                      | "pl"
                      | "pt-BR"
                      | "ro"
                      | "ru"
                      | "es-ES"
                      | "es-419"
                      | "sv-SE"
                      | "th"
                      | "tr"
                      | "uk"
                      | "vi",
                      null
                      | string,
                  >,
              >;
          locales?: { description?: undefined; name?: undefined };
          max_length?: number;
          min_length?: number;
          name_localizations?:
              | null
              | Partial<
                  Record<
                      | "id"
                      | "en-US"
                      | "en-GB"
                      | "bg"
                      | "zh-CN"
                      | "zh-TW"
                      | "hr"
                      | "cs"
                      | "da"
                      | "nl"
                      | "fi"
                      | "fr"
                      | "de"
                      | "el"
                      | "hi"
                      | "hu"
                      | "it"
                      | "ja"
                      | "ko"
                      | "lt"
                      | "no"
                      | "pl"
                      | "pt-BR"
                      | "ro"
                      | "ru"
                      | "es-ES"
                      | "es-419"
                      | "sv-SE"
                      | "th"
                      | "tr"
                      | "uk"
                      | "vi",
                      null
                      | string,
                  >,
              >;
          onAutocompleteError?: OnAutocompleteErrorCallback;
          required?: R;
          type: String;
          value?: ValueCallback<String, C, VC>;
      }