generated from cubetiq/ts-project
Add build and allow dist
This commit is contained in:
12
dist/crypto/core/default.crypto.d.ts
vendored
Normal file
12
dist/crypto/core/default.crypto.d.ts
vendored
Normal 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 }
|
||||
Reference in New Issue
Block a user