opds-web-client
Version:
10 lines (9 loc) • 379 B
TypeScript
import * as React from "react";
import { MediaLink, FulfillmentLink } from "./../interfaces";
export declare type DownloadButtonProps = React.ComponentProps<"button"> & React.ComponentProps<"a"> & {
isPlainLink?: boolean;
title: string;
link: MediaLink | FulfillmentLink;
};
declare const DownloadButton: React.FC<DownloadButtonProps>;
export default DownloadButton;