fix the unfixeble

This commit is contained in:
m
2026-09-11 10:49:12 +02:00
parent 76ed3aa66b
commit 2d9be3f489
13 changed files with 869 additions and 51 deletions
+6
View File
@@ -66,4 +66,10 @@ export async function listFoldersChunked(
};
await visit(directoryUri);
return result;
}
export function listEntries(directoryUri: string): DirectoryEntry[] {
const impl = walkImpl;
if (!impl) throw new Error('SafWalkImpl not configured');
return impl.list(directoryUri);
}