@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
9 lines (8 loc) • 332 B
TypeScript
/**
* A function to start a download for a file.
*
* @param content The content of the file to download.
* @param fileName The name of the file to download.
* @param opt_fileType The type of the file to download.
*/
export declare const download: (content: string, fileName: string, opt_fileType: string | undefined) => void;