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.
2 parents 623b531 + 666b5e3 commit 84bf1f5Copy full SHA for 84bf1f5
dashi/src/lib/types/model/callback.ts
@@ -62,7 +62,7 @@ export interface CallbackRef {
62
export interface InputRef {
63
/**
64
* The index of the input of a callback.
65
- * Records the input that triggered the callback.
+ * Records the index of the input that triggered the callback.
66
*/
67
inputIndex: number;
68
}
dashi/src/lib/utils/objPath.ts
@@ -26,7 +26,7 @@ export function setValue<S extends object | undefined>(
26
return _setValue(obj, toObjPath(path), value);
27
28
29
-export function _setValue<S extends object | undefined>(
+function _setValue<S extends object | undefined>(
30
obj: S,
31
path: ObjPath,
32
value: unknown,
0 commit comments