We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cd00a2 commit c7548baCopy full SHA for c7548ba
src/Model/collections.ts
@@ -85,8 +85,9 @@ declare module './Model' {
85
getOrDefault<S>(subpath: Path, defaultValue: S): ReadonlyDeep<S>;
86
87
/**
88
- * Get a value and throw error if undefined
+ * Gets the value located at this model's path or a relative subpath.
89
*
90
+ * If no value exists at the path, or the value is nullish (null or undefined), this will throw an error.
91
* @param subpath
92
*/
93
getOrThrow<S>(subpath: Path): ReadonlyDeep<S>;
0 commit comments