Updated build

This commit is contained in:
2022-02-14 16:56:44 +07:00
parent fb694eb5a2
commit f071f99346
3 changed files with 17 additions and 3 deletions

View File

@@ -9,4 +9,6 @@ declare const decrypt: (
key: string | Buffer,
iv?: string | Buffer | null | undefined
) => string
export { encrypt, decrypt }
declare const cryptoRandomBytes: (length: number) => Buffer
declare const cryptoRandomString: (length: number) => string
export { encrypt, decrypt, cryptoRandomBytes, cryptoRandomString }