gps-global-types 1.0.92 → 1.0.93
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.
- package/dist/isolate.types.d.ts +8 -14
- package/package.json +1 -1
package/dist/isolate.types.d.ts
CHANGED
|
@@ -1,19 +1,12 @@
|
|
|
1
1
|
import { ObjectId } from './global.types';
|
|
2
|
-
import { KlebTableObj } from './kleb.types';
|
|
3
2
|
import { DataGridHeaderType } from './mst.types';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
headers: DataGridHeaderType[];
|
|
12
|
-
};
|
|
13
|
-
kleborate?: {
|
|
14
|
-
data: KlebTableObj[];
|
|
15
|
-
headers: DataGridHeaderType[];
|
|
16
|
-
};
|
|
3
|
+
type validViews = 'isolate' | 'amr' | 'kleborate';
|
|
4
|
+
interface TableData {
|
|
5
|
+
data: RowDataType[];
|
|
6
|
+
headers: DataGridHeaderType[];
|
|
7
|
+
}
|
|
8
|
+
type TableMultiView = Partial<Record<validViews, TableData>>;
|
|
9
|
+
export interface TableDataMultiView extends TableMultiView {
|
|
17
10
|
neighbors?: ObjectId[];
|
|
18
11
|
}
|
|
19
12
|
export declare const KlebFields: {
|
|
@@ -148,3 +141,4 @@ export declare const IsolateFields: {
|
|
|
148
141
|
export interface RowDataType extends Record<string, any> {
|
|
149
142
|
_id: ObjectId;
|
|
150
143
|
}
|
|
144
|
+
export {};
|