Interface IVerifyEntityConfigurationsActionContext<TConfig>

A context for a VerifyEntityConfigurationsAction function.

interface IVerifyEntityConfigurationsActionContext<TConfig> {
    entity: {
        config: TConfig[keyof TConfig];
        name: keyof TConfig;
    };
    validationError?: Nilable<string>;
}

Type Parameters

Properties

entity: {
    config: TConfig[keyof TConfig];
    name: keyof TConfig;
}

The current entity.

Type declaration

validationError?: Nilable<string>

A non-empty value that represents a validation error.

Generated using TypeDoc