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

    Type Alias FsGetMetadataResponse

    Metadata returned by fs/getMetadata.

    type FsGetMetadataResponse = {
        createdAtMs: number;
        isDirectory: boolean;
        isFile: boolean;
        isSymlink: boolean;
        modifiedAtMs: number;
    }
    Index

    Properties

    createdAtMs: number

    File creation time in Unix milliseconds when available, otherwise 0.

    isDirectory: boolean

    Whether the path resolves to a directory.

    isFile: boolean

    Whether the path resolves to a regular file.

    isSymlink: boolean

    Whether the path itself is a symbolic link.

    modifiedAtMs: number

    File modification time in Unix milliseconds when available, otherwise 0.