Viktorani API - v0.0.8
    Preparing search index...

    Interface Widget

    A single panel within a Layout. config is an opaque object whose shape depends on type.

    interface Widget {
        config: Record<string, unknown>;
        id: string;
        layoutId: string;
        order: number;
        type: WidgetType;
        width: "full" | "half";
    }
    Index

    Properties

    config: Record<string, unknown>
    id: string
    layoutId: string
    order: number

    Display order within the layout grid.

    width: "full" | "half"