UNPKG

@zodash/down_load

Version:
8 lines (7 loc) 261 B
export interface IOptions { method?: 'GET' | 'POST' | 'PUT' | 'DELETE'; headers?: Record<string, string>; body?: string; } export declare function download(url: string, filename?: string, options?: IOptions): Promise<void>; export default download;