UNPKG
react-sessionstorage-ttl-hook
Version:
latest (1.0.7)
1.0.7
1.0.6
1.0.5
1.0.3
1.0.2
1.0.1
1.0.0
React hook for sessionStorage with TTL and auto-expiry
react-sessionstorage-ttl-hook
/
dist
/
useSessionStorageWithTTL.d.ts
3 lines
(2 loc)
•
155 B
TypeScript
View Raw
1
2
3
declare
function
useSessionStorageWithTTL<T>(
key
:
string
,
defaultValue
: T,
ttl
:
number
): [T,
(
value
: T
) =>
void
];
export
default
useSessionStorageWithTTL;