fix(core): update

This commit is contained in:
Philipp Kunz 2022-06-06 11:29:13 +02:00
parent 08d5461602
commit fc107509ff
2 changed files with 19 additions and 1 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@pushrocks/smartarchive',
version: '3.0.3',
version: '3.0.4',
description: 'work with archives'
}

View File

@ -91,4 +91,22 @@ export class SmartArchive {
const replaySubject = this.extractArchiveFromBufferToObservable(response.body);
return replaySubject;
}
// TODO
public async extractArchiveFromUrlToStream() {}
// TODO
public async extractArchiveFromFsToStream() {}
// TODO
public async extractArchiveFromStreamToStream() {}
// TODO
public async packFromStreamToStream() {}
// TODO
public async packFromFsToStream() {}
// TODO
public async packFromFsToFs() {}
}