Parent Directory
|
Revision Log
feat(api): advanced response handling
1 | import KeyValuePair from "../types/KeyValuePair"; |
2 | |
3 | export default class Response { |
4 | constructor(public readonly status: number, public readonly body: string | object | null | undefined = '', public readonly headers: KeyValuePair<string> = {}) { |
5 | |
6 | } |
7 | |
8 | toString() { |
9 | return this.body; |
10 | } |
11 | } |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |