src/app/modules/dashboard/interfaces/dashboardParams.ts
Contains dashboard query param(s)
Properties |
data |
data:
|
Type : literal type
|
Query data - Content identifier and time period |
dataset |
dataset:
|
Type : string
|
Optional |
Contains dashboard type - creation / consumption Used to construct dashboard api url |
export interface DashboardParams {
/**
* Query data - Content identifier and time period
*/
data: { identifier: string, timePeriod: string };
/**
* Contains dashboard type - creation / consumption
*
* Used to construct dashboard api url
*/
dataset?: string;
}