@porscheinformatik/clr-addons
Version:
Addon components for Clarity Angular
39 lines (38 loc) • 782 B
TypeScript
import { InjectionToken } from '@angular/core';
export declare const HISTORY_NOTIFICATION_URL_PROVIDER: InjectionToken<string>;
export interface ClrHistoryModel {
/**
* The username
*/
username: string;
/**
* The name of the page
*/
pageName: string;
/**
* The tenant ID
*/
tenantId: string;
/**
* The context of the page
*/
context?: string;
/**
* The title to be displayed.
*/
title: string;
/**
* The url where the navigation goes.
*/
url: string;
}
export interface ClrHistorySettingsModel {
/**
* Indicating if history is pinned (additional menu is shown if true)
*/
historyPinned: boolean;
/**
* The username
*/
username: string;
}