UNPKG
@csegames/camelot-unchained
Version:
latest (0.1.2)
0.1.2
Camelot Unchained Client Library
csegames/camelot-unchained-client-library
@csegames/camelot-unchained
/
lib
/
utils
/
local-storage.d.ts
11 lines
(10 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
declare
class
Store
{
private
prefix;
constructor
(
prefix
?:
string
);
setPrefix
:
(
prefix
:
string
) =>
void
;
set
:
(
key
:
string
,
value
:
any
) =>
void
;
get
: <T>
(
key
:
string
) =>
T;
clear
:
() =>
void
;
private
prefixed; }
export
default
Store
;