fix(s3 paths): pathing differences now correctly handled in a reducePath method.

This commit is contained in:
2024-05-27 12:56:25 +02:00
parent 645ebbdd4d
commit e924511147
6 changed files with 179 additions and 29 deletions

6
ts/interfaces.ts Normal file
View File

@@ -0,0 +1,6 @@
import type { Directory } from "./classes.directory.js";
export interface IPathDecriptor {
path?: string;
directory?: Directory;
}