semaphor 0.0.12 → 0.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -66,6 +66,12 @@ declare type BaseFilter = {
66
66
  connectionType?: 'database' | 'api';
67
67
  };
68
68
 
69
+ export declare type Bookmark = {
70
+ name: string;
71
+ default: boolean;
72
+ template: TDashboard;
73
+ };
74
+
69
75
  export declare function cleanCard(card: TCard): TCard;
70
76
 
71
77
  export declare function Dashboard(props: DashboardProps): JSX_2.Element;
@@ -230,7 +236,7 @@ export declare type TDashboard = {
230
236
  };
231
237
 
232
238
  export declare type TEvent = {
233
- type: 'success' | 'error' | 'info' | 'warning';
239
+ type: "success" | "error" | "info" | "warning";
234
240
  message: any;
235
241
  };
236
242