smartarchive/ts/classes.bzip2tools.ts

16 lines
380 B
TypeScript
Raw Normal View History

2023-11-06 17:14:21 +00:00
import type { SmartArchive } from './classes.smartarchive.js';
import * as plugins from './plugins.js';
2023-11-11 17:28:50 +00:00
import { unbzip2Stream } from './bzip2/index.js';
2023-11-06 17:14:21 +00:00
export class Bzip2Tools {
smartArchiveRef: SmartArchive;
constructor(smartArchiveRefArg: SmartArchive) {
this.smartArchiveRef = smartArchiveRefArg;
}
getDecompressionStream() {
2023-11-11 17:28:50 +00:00
return unbzip2Stream();
2023-11-06 17:14:21 +00:00
}
}