libs/common/web-components/src/back-link-adapter/back-link-adapter.service.ts
Abstract service to integrate a back link adapter into an application.
Requires an actual implementation like the BackLinkAemAdapterService
.
Provide it in your app root module.
{ provide: BackLinkAdapterService, useClass: BackLinkAemAdapterService }
Properties |
|
Abstract backLinkData |
Type : BackLinkConfigElement | undefined
|
import { BackLinkConfigElement } from './back-link-adapter.model';
/**
* Abstract service to integrate a back link adapter into an application.
*
* Requires an actual implementation like the `BackLinkAemAdapterService`.
* Provide it in your app root module.
*
* {
* provide: BackLinkAdapterService,
* useClass: BackLinkAemAdapterService
* }
*/
export abstract class BackLinkAdapterService {
abstract backLinkData: BackLinkConfigElement | undefined;
}