mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-04 07:52:51 +00:00
18 lines
264 B
TypeScript
18 lines
264 B
TypeScript
import CipherBase = require("cipher-base");
|
|
|
|
const buf = new Buffer(1);
|
|
|
|
class CipherTest extends CipherBase {
|
|
constructor() {
|
|
super();
|
|
}
|
|
|
|
final() {
|
|
return buf;
|
|
}
|
|
|
|
update(testBuffer: Buffer) {
|
|
return testBuffer;
|
|
}
|
|
}
|