/** * This file was auto-generated by Fern from our API Definition. */ import * as Scrapybara from "../../../../index"; /** * @example * { * command: "view", * path: "path" * } */ export interface EditRequest { command: Scrapybara.Command; path: string; fileText?: string; viewRange?: number[]; oldStr?: string; newStr?: string; insertLine?: number; }