bitwarden-estensione-browser/libs/common/src/platform/abstractions/file-download/file-download.request.ts

7 lines
150 B
TypeScript

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