We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ef3570 commit 9102d15Copy full SHA for 9102d15
src/store/json-engine/types/sea-node.type.ts
@@ -27,8 +27,8 @@ export type ArrayNodeData = SharedNodeData & {
27
export type PrimitiveNodeData = SharedNodeData & {
28
dataType: JsonDataType.String | JsonDataType.Number | JsonDataType.Boolean | JsonDataType.Null;
29
/**
30
- * `PrimitiveNode` is always an item of some array.
31
- * It means that the parent is always a `ArrayNode`.
+ * `PrimitiveNode` is always an item of specific array.
+ * It means that the parent is always an `ArrayNode`.
32
*/
33
arrayIndex: number;
34
value: string | number | boolean | null;
0 commit comments