@mcp-z/mcp-pdf
    Preparing search index...

    Interface GroupItem

    interface GroupItem {
        align?: "center" | "end" | "start";
        alignItems?: "center" | "end" | "start" | "stretch";
        background?: string;
        border?: { color: string; width: number };
        children: schemas.ContentItem[];
        direction?: "column" | "row";
        flex?: number;
        gap?: number;
        height?: string | number;
        justify?: "center" | "end" | "start" | "space-between" | "space-around";
        left?: number;
        padding?:
            | number
            | { bottom?: number; left?: number; right?: number; top?: number };
        page?: number;
        position?: "absolute" | "relative";
        top?: number;
        type: "group";
        width?: string | number;
    }
    Index

    Properties

    align?: "center" | "end" | "start"
    alignItems?: "center" | "end" | "start" | "stretch"
    background?: string
    border?: { color: string; width: number }
    children: schemas.ContentItem[]
    direction?: "column" | "row"
    flex?: number
    gap?: number
    height?: string | number
    justify?: "center" | "end" | "start" | "space-between" | "space-around"
    left?: number
    padding?:
        | number
        | { bottom?: number; left?: number; right?: number; top?: number }
    page?: number
    position?: "absolute" | "relative"
    top?: number
    type: "group"
    width?: string | number