You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/models/IDatasetConfig.ts
+23-13Lines changed: 23 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -3,32 +3,42 @@ import { IDatasetTechSpecs } from './IDatasetTechSpecs';
3
3
4
4
exportinterfaceIDatasetConfig{
5
5
apis: IDatasetApi[];
6
-
currentDateButton: string|null;
7
-
customNoChartMessage: boolean|null;
6
+
currentDateButton: 'byMonth'|'byDay'|'byFullMonth'|null;// byFullMonth will gather data from the entire month, byMonth is just looks at the last day of the month
7
+
customNoChartMessage: boolean|null;// not used at the moment
8
8
datePreset: string|null;
9
-
customRangePreset: string|null;
9
+
customRangePreset: string|null;// *** Currently only used for TRRE
10
10
bannerCallout: Record<string,string>|null;
11
-
datatableBanner: string|null;
11
+
datatableBanner: string|null;// Presented in Preview & Download section *** Currently only used for DTS
0 commit comments