@typia/interface 12.0.0-dev.20260312-4 → 12.0.0-dev.20260312-5
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.
|
@@ -63,7 +63,7 @@ export declare namespace IJsonParseResult {
|
|
|
63
63
|
* Contains whatever could be recovered from the malformed JSON. May be
|
|
64
64
|
* incomplete or have missing properties.
|
|
65
65
|
*/
|
|
66
|
-
data: DeepPartial<T
|
|
66
|
+
data: DeepPartial<T> | undefined;
|
|
67
67
|
/**
|
|
68
68
|
* The original input string that was parsed.
|
|
69
69
|
*
|
|
@@ -117,6 +117,6 @@ export declare namespace IJsonParseResult {
|
|
|
117
117
|
* @example
|
|
118
118
|
* missing opening quote for 'hello'
|
|
119
119
|
*/
|
|
120
|
-
|
|
120
|
+
description: unknown;
|
|
121
121
|
}
|
|
122
122
|
}
|
package/package.json
CHANGED
|
@@ -70,7 +70,7 @@ export namespace IJsonParseResult {
|
|
|
70
70
|
* Contains whatever could be recovered from the malformed JSON. May be
|
|
71
71
|
* incomplete or have missing properties.
|
|
72
72
|
*/
|
|
73
|
-
data: DeepPartial<T
|
|
73
|
+
data: DeepPartial<T> | undefined;
|
|
74
74
|
|
|
75
75
|
/**
|
|
76
76
|
* The original input string that was parsed.
|
|
@@ -129,6 +129,6 @@ export namespace IJsonParseResult {
|
|
|
129
129
|
* @example
|
|
130
130
|
* missing opening quote for 'hello'
|
|
131
131
|
*/
|
|
132
|
-
|
|
132
|
+
description: unknown;
|
|
133
133
|
}
|
|
134
134
|
}
|