revdev 0.20.0 → 0.21.0
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/lib/units/table/entity.d.ts +6 -12
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FeEntityAccess, FeEntityContribution, FeWordKnowledge, PotentialWord
|
|
1
|
+
import { FeEntityAccess, FeEntityContribution, FeWordKnowledge, PotentialWord } from "../common";
|
|
2
2
|
import { FeWord } from "../word";
|
|
3
3
|
export interface FeTable {
|
|
4
4
|
id: string;
|
|
@@ -11,14 +11,14 @@ export interface FeTable {
|
|
|
11
11
|
access: FeEntityAccess;
|
|
12
12
|
knowledge: FeWordKnowledge;
|
|
13
13
|
}
|
|
14
|
-
export interface
|
|
15
|
-
id: string;
|
|
16
|
-
cells: FeTableCell[];
|
|
17
|
-
}
|
|
18
|
-
export interface FeTableCell {
|
|
14
|
+
export interface FeTableRowColumn {
|
|
19
15
|
columnIndex: number;
|
|
20
16
|
words: FeWord[];
|
|
21
17
|
}
|
|
18
|
+
export interface FeTableRow {
|
|
19
|
+
id: string;
|
|
20
|
+
columns: FeTableRowColumn[];
|
|
21
|
+
}
|
|
22
22
|
export interface FeTableEntity {
|
|
23
23
|
id: string;
|
|
24
24
|
slug: string;
|
|
@@ -51,9 +51,3 @@ export interface FeUpdateTableRow {
|
|
|
51
51
|
rowId?: string;
|
|
52
52
|
columns: FeUpdateTableRowColumn[];
|
|
53
53
|
}
|
|
54
|
-
export interface FeTableRowWord {
|
|
55
|
-
rowId: string;
|
|
56
|
-
columnIndex: string;
|
|
57
|
-
word: FeWordDirect;
|
|
58
|
-
count: number;
|
|
59
|
-
}
|