mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
12 lines
223 B
TypeScript
12 lines
223 B
TypeScript
import { BaseResponse } from "./baseResponse";
|
|
|
|
export class StringResponse implements BaseResponse {
|
|
object: string;
|
|
data: string;
|
|
|
|
constructor(data: string) {
|
|
this.object = "string";
|
|
this.data = data;
|
|
}
|
|
}
|