mirror of
https://github.com/bitwarden/cli
synced 2026-01-11 04:23:13 +00:00
cli response objects
This commit is contained in:
14
src/models/response/stringResponse.ts
Normal file
14
src/models/response/stringResponse.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { CipherView } from 'jslib/models/view/cipherView';
|
||||
|
||||
import { BaseResponse } from './baseResponse';
|
||||
|
||||
import { CipherType } from 'jslib/enums';
|
||||
|
||||
export class StringResponse extends BaseResponse {
|
||||
data: string;
|
||||
|
||||
constructor(data: string) {
|
||||
super('string');
|
||||
this.data = data;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user