mirror of
https://github.com/bitwarden/jslib
synced 2026-01-07 19:13:15 +00:00
12 lines
239 B
TypeScript
12 lines
239 B
TypeScript
import { BaseResponse } from './baseResponse';
|
|
|
|
export class StringResponse implements BaseResponse {
|
|
object: string;
|
|
data: string;
|
|
|
|
constructor(data: string) {
|
|
this.object = 'string';
|
|
this.data = data;
|
|
}
|
|
}
|