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
/
CryptoController.d.ts
6 lines
(5 loc)
•
183 B
TypeScript
View Raw
1
2
3
4
5
6
declare
const
CryptoController
: {
encrypt
(
obj
: any,
secretKey
:
string
):
string
;
decrypt
(
encryptedText
:
string
,
secretKey
:
string
):
string
; }; export
default
CryptoController;