UNPKG

@agnostack/requestd

Version:

Please contact agnoStack via info@agnostack.com for any questions

8 lines (7 loc) 296 B
import { CryptoImplementation, ObjectType } from '../types'; export default class CryptoJSON implements CryptoImplementation { config: ObjectType; constructor(config: ObjectType); encrypt(decrypted: ObjectType): Promise<string>; decrypt(encrypted: string): Promise<ObjectType>; }