8 lines
132 B
TypeScript
8 lines
132 B
TypeScript
declare function download(
|
|
data: Blob | File | string | any[],
|
|
name: string,
|
|
type?: string
|
|
): void;
|
|
|
|
export = download;
|