UNPKG

pxt-core

Version:

Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors

9 lines (8 loc) 273 B
import { ContainerProps } from "../util"; export interface LinkProps extends ContainerProps { href: string; target?: "_self" | "_blank" | "_parent" | "_top"; tabIndex?: number; title?: string; } export declare const Link: (props: LinkProps) => JSX.Element;