UNPKG
fcr-core
Version:
edu (3.4.4-100)
latest (3.8.0)
3.8.0
3.8.0-alpha
3.7.9-alpha
3.7.8
3.7.8-rc.4-alpha
3.7.8-rc.3
3.7.8-rc.2
3.7.8-rc.1
3.7.7
3.7.7-rc.1
3.7.6
3.7.5
3.7.4
3.7.4-rc.114
3.7.4-rc.113
3.7.4-rc.112
3.7.4-rc.111
3.7.4-rc.110
3.7.4-rc.100
3.7.4-rc.1
3.7.3
3.7.2
3.7.1
3.7.0
3.6.4
3.6.3
3.6.2
3.6.1
3.6.0
3.5.1
3.5.0
3.4.100
3.4.5
3.4.4
3.4.4-100
3.4.3
3.4.2
3.4.2-edu.1
3.4.1
3.4.1-edu.1
3.4.0
Core APIs for building online scenes
fcr-core
/
lib
/
utilities
/
storage.d.ts
9 lines
(8 loc)
•
225 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
declare
class
LocalStorage
{
set
(
key
:
string
,
value
:
string
|
object
):
void
;
get
(
key
:
string
):
string
|
null
;
remove
(
key
:
string
):
void
;
clear
():
void
; } export
declare
const
storage
: LocalStorage; export {};