@runloop/remote-agents-sdk
    Preparing search index...

    Type Alias FsReadDirectoryEntry

    A directory entry returned by fs/readDirectory.

    type FsReadDirectoryEntry = {
        fileName: string;
        isDirectory: boolean;
        isFile: boolean;
    }
    Index

    Properties

    fileName: string

    Direct child entry name only, not an absolute or relative path.

    isDirectory: boolean

    Whether this entry resolves to a directory.

    isFile: boolean

    Whether this entry resolves to a regular file.