OpenCut Engine API - v0.1.0
    Preparing search index...

    Interface SplitContent

    Content shown on the non-face side of a split-screen segment.

    interface SplitContent {
        accentColor?: string;
        bgColor?: string;
        bullets?: {
            items: string[];
            itemStyle?: "bullets" | "numbered";
            title: string;
        };
        code?: { language: string; lines: string[] };
        contentType: "bullets" | "image" | "code";
        faceSide: "left" | "right";
        imagePath?: string;
    }
    Index

    Properties

    accentColor?: string

    Accent color. Default "#4ade80".

    bgColor?: string

    Background color of the content panel. Default "#0d1117".

    bullets?: { items: string[]; itemStyle?: "bullets" | "numbered"; title: string }

    For contentType "bullets".

    code?: { language: string; lines: string[] }

    For contentType "code": syntax-highlighted lines.

    contentType: "bullets" | "image" | "code"
    faceSide: "left" | "right"

    Which side the face occupies (content goes on the other side).

    imagePath?: string

    Path relative to public/ for contentType "image".