UNPKG

higlass

Version:

HiGlass Hi-C / genomic / large data viewer

8 lines (7 loc) 288 B
/** * Download a file to the user's computer. * @param {string} filename - Name of the file to download * @param {string | Blob} stringOrBlob - Contents of the file to download */ export function download(filename: string, stringOrBlob: string | Blob): void; export default download;