UNPKG

@arteneo/forge

Version:
11 lines (10 loc) 441 B
import React from "react"; import { ButtonProps } from "../../components/Common/Button"; import EndpointType from "../../definitions/EndpointType"; interface ButtonDownloadInterface { endpoint: EndpointType; } type ButtonDownloadProps = ButtonDownloadInterface & ButtonProps; declare const ButtonDownload: ({ endpoint, ...props }: ButtonDownloadProps) => React.JSX.Element; export default ButtonDownload; export { ButtonDownloadProps };