MCPcopy Create free account
hub / github.com/Sandpack/nodebox-runtime / IFileStats

Interface IFileStats

packages/nodebox/src/modules/fs.ts:19–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17export type FileWatchEvent = Omit<FSWatchEvent, 'watcherId'>;
18
19export interface IFileStats {
20 type: 'dir' | 'file' | 'link';
21 size: number;
22 ino: number;
23 atimeMs: number;
24 mtimeMs: number;
25 ctimeMs: number;
26 blocks: number;
27 mode: number;
28}
29
30export interface FileSystemEvents {
31 'fs/init': {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected