Updated export type

This commit is contained in:
Adam Zerella
2019-03-06 21:56:07 +11:00
parent 4024ad1b37
commit c19c506eb9
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
import CipherBase from "cipher-base";
import CipherBase = require("cipher-base");
const buf = new Buffer(1);

View File

@@ -11,4 +11,4 @@ declare abstract class CipherBase {
abstract update(value: Buffer, inputEnc?: string, outputEnc?: string): Buffer;
}
export default CipherBase;
export = CipherBase;