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