fix(core): update

This commit is contained in:
2023-07-26 16:13:33 +02:00
parent d90e833270
commit fbdb75d673
19 changed files with 1617 additions and 12760 deletions

View File

@@ -1,7 +1,6 @@
/// <reference types="node" resolution-mode="require"/>
import * as plugins from './smartarchive.plugins.js';
export declare class SmartArchive {
archiveDirectory: string;
constructor();
/**
* extracts an archive from a given url
@@ -10,13 +9,18 @@ export declare class SmartArchive {
/**
* extracts an archive from a given filePath on disk
* @param filePathArg
* @param targetDir
* @param targetDirArg
*/
extractArchiveFromFilePathToFs(filePathArg: string, targetDir: string): Promise<void>;
extractArchiveFromFilePathToFs(filePathArg: string, targetDirArg: string): Promise<void>;
/**
* extracts to Observable
* where the Observable is emitting smartfiles
*/
extractArchiveFromBufferToObservable(bufferArg: Buffer): Promise<plugins.smartrx.rxjs.ReplaySubject<plugins.smartfile.Smartfile>>;
extractArchiveWithIntakeAndReplaySubject(): {
intake: plugins.smartstream.StreamIntake<Buffer>;
replaySubject: plugins.smartrx.rxjs.ReplaySubject<plugins.smartfile.Smartfile>;
};
/**
* extracts to Observable
*/