Documentation
    Preparing search index...

    Interface PajaOptions

    Normalized Paja runtime options.

    interface PajaOptions {
        command?: PajaCommand;
        configPath?: string;
        host: string;
        mode: "external-target" | "managed-command";
        port: number;
        readyTimeoutMs: number;
        simulation: PajaSimulation;
        targetUrl: string;
    }
    Index

    Properties

    command?: PajaCommand

    Optional managed target command.

    configPath?: string

    Optional config path retained for host diagnostics.

    host: string

    Paja server host.

    mode: "external-target" | "managed-command"

    Whether Paja owns a managed command or attaches to an external target.

    port: number

    Paja server port.

    readyTimeoutMs: number

    Target readiness timeout in milliseconds.

    simulation: PajaSimulation

    Normalized simulation model.

    targetUrl: string

    Absolute target URL for iframe-url mode.