functional-models
    Preparing search index...

    Function BigTextProperty

    • A property for large blocks of strings.

      Parameters

      • config: PropertyConfig<string> = {}

        Additional configurations

      • additionalMetadata: {} = {}

        Additional metadata

      Returns Readonly<
          {
              createGetter: (
                  value: string,
                  modelData: Readonly,
                  modelInstance: ModelInstance<
                      Readonly<{ [s: string]: any }>,
                      object,
                      object,
                  >,
              ) => ValueGetter<string, Readonly<{ [s: string]: any }>, object, object>;
              getChoices: () => readonly ChoiceTypes[];
              getConfig: () => object;
              getConstantValue: () => undefined | string;
              getDefaultValue: () => undefined | string;
              getPropertyType: () => string;
              getValidator: (
                  valueGetter: ValueGetter<
                      string,
                      Readonly<{ [s: string]: any }>,
                      object,
                      object,
                  >,
              ) => PropertyValidator<Readonly<{ [s: string]: any }>>;
          },
      >