projects/core/src/site-context/config/site-context-config.ts
Properties |
|
Optional context |
Type : literal type
|
import { Injectable } from '@angular/core';
import { Config } from '../../config/config-tokens';
@Injectable({
providedIn: 'root',
useExisting: Config,
})
export abstract class SiteContextConfig {
context?: {
urlParameters?: string[];
[contextName: string]: string[] | undefined;
};
}
declare module '../../config/config-tokens' {
interface Config extends SiteContextConfig {}
}