@am92/securities-utility
Version:
A utility package for securities applications
11 lines (10 loc) • 486 B
TypeScript
import { IConfig } from '../TYPES/Config';
/**
* Initializes the download process by creating an instance of DownloadManager.
*
* @param {string} secMasterURL - The URL of the sec master file to be downloaded.
* @param {IConfig} [config=DEFAULT_VALUES] - Optional configuration for the download manager.
* Defaults to `{ requireSearchModule: false }` if not provided.
* @returns {void}
*/
export declare function initializeDownload(secMasterURL: string, config?: IConfig): void;