fix(Request): Change Request.text's return type to string
Change the return typing for the .text method to `string` so typescript treats it like a normal string. Closes #8138
This commit is contained in:
parent
67c80fbb5e
commit
b2e0946696
@ -84,5 +84,5 @@ export class Request {
|
|||||||
* empty
|
* empty
|
||||||
* string.
|
* string.
|
||||||
*/
|
*/
|
||||||
text(): String { return isPresent(this._body) ? this._body.toString() : ''; }
|
text(): string { return isPresent(this._body) ? this._body.toString() : ''; }
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user