bitwarden-estensione-browser/libs/common/src/abstractions/fileDownload/fileDownloadRequest.ts

7 lines
150 B
TypeScript

export type FileDownloadRequest = {
fileName: string;
blobData: BlobPart;
blobOptions?: BlobPropertyBag;
downloadMethod?: "save" | "open";
};