mirror of
https://github.com/bitwarden/jslib
synced 2025-12-06 00:03:29 +00:00
file response for CLI (#499)
This commit is contained in:
13
node/src/cli/models/response/fileResponse.ts
Normal file
13
node/src/cli/models/response/fileResponse.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { BaseResponse } from './baseResponse';
|
||||
|
||||
export class FileResponse implements BaseResponse {
|
||||
object: string;
|
||||
data: Buffer;
|
||||
fileName: string;
|
||||
|
||||
constructor(data: Buffer, fileName: string) {
|
||||
this.object = 'file';
|
||||
this.data = data;
|
||||
this.fileName = fileName;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user