pxt-core
Version:
Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors
13 lines (12 loc) • 342 B
TypeScript
import * as React from "react";
export interface ShareLinkDialogProps {
visible: boolean;
shareUrl?: string;
title?: string;
ariaLabel?: string;
linkAriaLabel?: string;
className?: string;
children?: React.ReactNode;
onClose: () => void;
}
export declare const ShareLinkDialog: React.FC<ShareLinkDialogProps>;