pxt-core
Version:
Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors
10 lines (9 loc) • 355 B
TypeScript
import * as React from "react";
import { ContainerProps } from "../util";
export interface LinkProps extends ContainerProps {
href: string;
target?: "_self" | "_blank" | "_parent" | "_top";
tabIndex?: number;
title?: string;
}
export declare const Link: React.ForwardRefExoticComponent<LinkProps & React.RefAttributes<HTMLAnchorElement>>;