File

src/modules/session-ui/entities/stark-session-ui-config.ts

Description

Definition of the configuration object for the Stark Session UI module

Index

Properties

Properties

Public Optional timeoutWarningDialogDisabled
Type : boolean

Whether the warning dialog should be displayed or not. If true, then the Ngrx Effects in charge of displaying the dialog won't be executed.

import { InjectionToken } from "@angular/core";

/**
 * {@link https://v12.angular.io/api/core/InjectionToken|InjectionToken} used to provide the {@link StarkSessionUiConfig}
 */
export const STARK_SESSION_UI_CONFIG: InjectionToken<StarkSessionUiConfig> = new InjectionToken<StarkSessionUiConfig>(
	"StarkSessionUiConfig"
);

/**
 * Definition of the configuration object for the Stark Session UI module
 */
export class StarkSessionUiConfig {
	/**
	 * Whether the warning dialog should be displayed or not.
	 * If true, then the Ngrx Effects in charge of displaying the dialog won't be executed.
	 */
	public timeoutWarningDialogDisabled?: boolean;
}

results matching ""

    No results matching ""