Interface ApplicationLinkButton

interface ApplicationLinkButton {
    id: string;
    style?: CSSProperties;
    target: "_blank" | "_self";
    title?: string;
    to:
        | string
        | { hash: string; pathname: string; search: string; state: unknown };
    type: "app";
}

Hierarchy

  • BlockBase
    • ApplicationLinkButton

Properties

id: string
target: "_blank" | "_self"
title?: string
to: string | { hash: string; pathname: string; search: string; state: unknown }
type: "app"