Add build and allow dist

This commit is contained in:
2022-02-14 16:15:32 +07:00
parent 3d8f9c5d78
commit 3c12c69606
39 changed files with 11173 additions and 3 deletions

12
dist/crypto/core/default.crypto.d.ts vendored Normal file
View File

@@ -0,0 +1,12 @@
/// <reference types="node" />
declare const encrypt: (
data: string | Buffer,
key: string | Buffer,
iv?: string | Buffer | null | undefined
) => string
declare const decrypt: (
data: string | Buffer,
key: string | Buffer,
iv?: string | Buffer | null | undefined
) => string
export { encrypt, decrypt }