UNPKG

@scaffoldly/serverless-util

Version:
7 lines 306 B
export declare type EncryptedValue = { keyId: string; value: string; }; export declare const encryptValue: (value: string, keyId?: string | undefined) => Promise<EncryptedValue>; export declare const decryptValue: (value: EncryptedValue) => Promise<string>; //# sourceMappingURL=encryption.d.ts.map