Skip to main content

foundation-login.loginconfig.messagedelays

Home > @genesislcap/foundation-login > LoginConfig > messageDelays

LoginConfig.messageDelays property

Delay configurations for various message-related actions.

Signature:

messageDelays?: MessageDelays;

Remarks

This property holds numeric values representing delays (in milliseconds) for specific message-related actions within the application. Each key in this object corresponds to a particular message action.

Example

messageDelays: {
forgotPassword: 1000, // Delay of 1000ms before processing forgot password action
resetPassword: 2000, // Delay of 2000ms for reset password action
base: 500 // Base delay used for generic message processing
}