@anglr/rest
Version:
Angular module representing rest services
14 lines • 334 B
TypeScript
/**
* Type describing response for ResponseType.BlobAndFilename
*/
export interface BlobAndFilenameResponse {
/**
* Content of the downloaded file
*/
blob: Blob;
/**
* Name of the file that is being downloaded
*/
filename: string;
}
//# sourceMappingURL=blobAndFilenameResponse.interface.d.ts.map