UNPKG
@vizmo/parse
Version:
latest (7.1.2-1)
7.1.2-1
6.1.1-2
6.1.1-1
5.3.0-1
4.0.1-1
Parse JavaScript SDK
parseplatform.org
parse-community/Parse-SDK-JS
@vizmo/parse
/
types
/
StorageController.browser.d.ts
10 lines
(9 loc)
•
264 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
declare
const
StorageController
: { async: number;
getItem
(
path
:
string
):
string
|
null
;
setItem
(
path
:
string
,
value
:
string
):
void
;
removeItem
(
path
:
string
):
void
;
getAllKeys
():
string
[];
clear
():
void
; }; export
default
StorageController;