Skip to content

Commit 494317b

Browse files
committed
fix(memory-core): drop unnecessary Dirent<string> type argument
1 parent 9f82e80 commit 494317b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extensions/memory-core/src/dreaming-integrity-guard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export async function snapshotMemoryDirFiles(
2222
workspaceDir: string,
2323
): Promise<MemoryDirSnapshotResult> {
2424
const memoryDir = path.join(workspaceDir, "memory");
25-
let entries: Dirent<string>[];
25+
let entries: Dirent[];
2626
try {
2727
entries = await fs.readdir(memoryDir, { withFileTypes: true, encoding: "utf-8" });
2828
} catch (err) {

0 commit comments

Comments
 (0)