@lightdash/common 0.1439.1 → 0.1440.0
Sign up to get free protection for your applications and to get access to all the features.
@@ -100,6 +100,11 @@ export type DashboardTab = {
|
|
100
100
|
name: string;
|
101
101
|
order: number;
|
102
102
|
};
|
103
|
+
export type DashboardTabWithUrls = DashboardTab & {
|
104
|
+
nextUrl: string | null;
|
105
|
+
prevUrl: string | null;
|
106
|
+
selfUrl: string;
|
107
|
+
};
|
103
108
|
export type DashboardDAO = Omit<Dashboard, 'isPrivate' | 'access'>;
|
104
109
|
export type DashboardConfig = {
|
105
110
|
isDateZoomDisabled: boolean;
|