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

    Type Alias FsRemoveParams

    Remove a file or directory tree from the host filesystem.

    type FsRemoveParams = {
        force?: boolean | null;
        path: AbsolutePathBuf;
        recursive?: boolean | null;
    }
    Index

    Properties

    force?: boolean | null

    Whether missing paths should be ignored. Defaults to true.

    Absolute path to remove.

    recursive?: boolean | null

    Whether directory removal should recurse. Defaults to true.