UNPKG
syncbasestore
Version:
latest (0.1.0)
0.1.0
Lightweight reactive store with built-in filtering and async state handling
syncbasestore
/
dist
/
utils
/
deepUtils.d.ts
4 lines
(3 loc)
•
228 B
TypeScript
View Raw
1
2
3
4
export
declare
function
getValueAtPath
(
obj
:
any
,
path
:
string
):
any
;
export
declare
function
setValueAtPath
(
obj
:
any
,
path
:
string
,
value
:
any
):
any
;
export
declare
function
setDeepValue<T>(
obj
: T,
path
:
string
,
value
:
any
): T;