mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 13:45:36 +03:00
docs: no Response.finished() return value (#8819)
This commit is contained in:
parent
ccff6e3036
commit
a5fa190748
@ -15,7 +15,7 @@ Returns the buffer with response body.
|
|||||||
## async method: Response.finished
|
## async method: Response.finished
|
||||||
- returns: <[null]|[string]>
|
- returns: <[null]|[string]>
|
||||||
|
|
||||||
Waits for this response to finish, returns failure error if request failed.
|
Waits for this response to finish, returns always `null`.
|
||||||
|
|
||||||
## method: Response.frame
|
## method: Response.frame
|
||||||
- returns: <[Frame]>
|
- returns: <[Frame]>
|
||||||
|
2
types/types.d.ts
vendored
2
types/types.d.ts
vendored
@ -13255,7 +13255,7 @@ export interface Response {
|
|||||||
body(): Promise<Buffer>;
|
body(): Promise<Buffer>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Waits for this response to finish, returns failure error if request failed.
|
* Waits for this response to finish, returns always `null`.
|
||||||
*/
|
*/
|
||||||
finished(): Promise<null|Error>;
|
finished(): Promise<null|Error>;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user