@drghaliasri/butex 5.5.2 → 5.5.4

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.
@@ -61,7 +61,7 @@ type DocumentJson = {
61
61
  type DocumentBlockJson = {
62
62
  command: string;
63
63
  value?: string;
64
- math_objects?: MathObjectJson[];
64
+ math_objects?: Array<MathObjectJson | null>;
65
65
  options?: Record<string, string>;
66
66
  closing?: string;
67
67
  items?: DocumentListItemJson[];
@@ -70,7 +70,7 @@ type DocumentBlockJson = {
70
70
  };
71
71
  type DocumentListItemJson = {
72
72
  value: string;
73
- math_objects?: MathObjectJson[];
73
+ math_objects?: Array<MathObjectJson | null>;
74
74
  blocks?: DocumentBlockJson[];
75
75
  };
76
76
  type MathNode = {
@@ -61,7 +61,7 @@ type DocumentJson = {
61
61
  type DocumentBlockJson = {
62
62
  command: string;
63
63
  value?: string;
64
- math_objects?: MathObjectJson[];
64
+ math_objects?: Array<MathObjectJson | null>;
65
65
  options?: Record<string, string>;
66
66
  closing?: string;
67
67
  items?: DocumentListItemJson[];
@@ -70,7 +70,7 @@ type DocumentBlockJson = {
70
70
  };
71
71
  type DocumentListItemJson = {
72
72
  value: string;
73
- math_objects?: MathObjectJson[];
73
+ math_objects?: Array<MathObjectJson | null>;
74
74
  blocks?: DocumentBlockJson[];
75
75
  };
76
76
  type MathNode = {