UNPKG

371 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3class ResponseData {
4 constructor(status, data) {
5 this.status = status;
6 this.data = data;
7 }
8 getStatus() {
9 return this.status;
10 }
11 getData() {
12 return this.data;
13 }
14}
15exports.ResponseData = ResponseData;
16//# sourceMappingURL=ResponseData.js.map
\No newline at end of file