functional-models
    Preparing search index...

    Function LastModifiedDateProperty

    • A property that automatically updates whenever the model instance is saved.

      Parameters

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