Interface LinkProps

interface LinkProps {
    alignment?: LinkAlignmentTypes;
    background_color?: string;
    canvas_anchor?: string;
    color?: string;
    display_text?: string;
    file?: null | Partial<File> & { page_index?: number };
    font_family?: string;
    font_size?: number;
    link_type?: LinkAnchorTypes;
    page_index?: number;
    preview_type?: LinkPreviewTypes;
    target?: "_self" | "_blank";
    url?: string;
}

Properties

alignment?: LinkAlignmentTypes
background_color?: string
canvas_anchor?: string
color?: string
display_text?: string
file?: null | Partial<File> & { page_index?: number }
font_family?: string
font_size?: number
link_type?: LinkAnchorTypes
page_index?: number
preview_type?: LinkPreviewTypes
target?: "_self" | "_blank"
url?: string