libs/common/web-components/src/back-link-adapter/back-link-adapter.model.ts
Properties |
backLinks (Optional) | |
Type |
BackLinkConfigElement[]
|
default (Optional) | |
Type |
BackLinkConfigElement
|
import { PageActionButtonLabel } from '@allianz/taly-core';
export interface BackLinkConfiguration {
backLinks?: BackLinkConfigElement[];
default?: BackLinkConfigElement;
}
export interface BackLinkConfigElement {
path: string;
stageLinkLabel?: string;
nextButtonLabel?: string | PageActionButtonLabel[];
}