import type { RootFilesystemEntryEncoding } from "./RootFilesystemEntryEncoding.js"; import type { RootFilesystemEntryKind } from "./RootFilesystemEntryKind.js"; export type RootFilesystemEntry = { path: string; kind: RootFilesystemEntryKind; mode?: number; uid?: number; gid?: number; content?: string; encoding?: RootFilesystemEntryEncoding; target?: string; executable: boolean; };