We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f0ef27e + 519bece commit 77e337bCopy full SHA for 77e337b
src/types/index.d.ts
@@ -50,7 +50,10 @@ type Block = {
50
length: number;
51
type: BlockType;
52
subtype: BlockSubType;
53
- ial?: { [key: string]: string };
+ /** string of { [key: string]: string }
54
+ * For instance: "{: custom-type=\"query-code\" id=\"20230613234017-zkw3pr0\" updated=\"20230613234509\"}"
55
+ */
56
+ ial?: string;
57
sort: number;
58
created: string;
59
updated: string;
@@ -63,4 +66,4 @@ type doOperation = {
63
66
parentID: BlockId | DocumentId;
64
67
previousID: BlockId;
65
68
retData: null;
-}
69
+}
0 commit comments