Files
med-notes/.pnpm-store/v10/files/4e/8e0b73880fb28fc1976c703ed1fe0d7a50a5647895ef1bd23033e76539ff13ca2d9b6da34dc47837dd4bbb99df391a0d8baf4afb1b9caf74ce831d0ae30805
2025-05-09 05:30:08 +02:00

14 lines
462 B
Plaintext

export type IDownloadManager = import("./interfaces").IDownloadManager;
/**
* @implements {IDownloadManager}
*/
export class DownloadManager implements IDownloadManager {
downloadData(data: any, filename: any, contentType: any): void;
/**
* @returns {boolean} Indicating if the data was opened.
*/
openOrDownloadData(data: any, filename: any, dest?: null): boolean;
download(data: any, url: any, filename: any): void;
#private;
}