Interface SandboxFile

Input files to provide to the sandbox.

interface SandboxFile {
    path: string;
    content: string;
    encoding?: "base64" | "utf8" | "binary";
}

Properties

path: string

File path relative to working directory

content: string

File content

encoding?: "base64" | "utf8" | "binary"

File encoding