export interface CheckIfPathIsDirectoryPayload { readonly path: string; } export interface CheckIfPathExistsPayload { readonly path: string; } export interface GetAllFilesFromDirectoryPayload { readonly directoryPath: string; } export interface ReadFilePayload { readonly filePath: string; } export interface FileSystemService { checkIfPathIsDirectory(payload: CheckIfPathIsDirectoryPayload): Promise; checkIfPathExists(payload: CheckIfPathExistsPayload): boolean; getAllFilesFromDirectory(payload: GetAllFilesFromDirectoryPayload): Promise; readFile(payload: ReadFilePayload): Promise; } //# sourceMappingURL=fileSystemService.d.ts.map