feature-libs/asm/core/config/asm-config.ts
Properties |
Optional asm |
Type : literal type
|
Defined in feature-libs/asm/core/config/asm-config.ts:9
|
Optional backend |
Type : BackendConfig
|
Inherited from
OccConfig
|
Defined in
OccConfig:35
|
Optional context |
Type : literal type
|
Inherited from
SiteContextConfig
|
Defined in
SiteContextConfig:9
|
import { Injectable } from '@angular/core';
import { Config, OccConfig } from '@spartacus/core';
@Injectable({
providedIn: 'root',
useExisting: Config,
})
export abstract class AsmConfig extends OccConfig {
asm?: {
agentSessionTimer?: {
startingDelayInSeconds?: number;
};
customerSearch?: {
maxResults?: number;
};
};
}
declare module '@spartacus/core' {
interface Config extends AsmConfig {}
}