File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ type Parser = (str: string) => any;
47
47
type MultipartValueSingle =
48
48
| Blob
49
49
| Uint8Array
50
- | Deno . Reader
51
50
| string
52
51
| boolean
53
52
| number ;
@@ -189,7 +188,7 @@ exposeSham(SHAM_SYMBOL);
189
188
async function completeXhrPromises ( ) {
190
189
for (
191
190
const promise of Object . values (
192
- ( window as any ) [ SHAM_SYMBOL ] . promises ,
191
+ ( globalThis as any ) [ SHAM_SYMBOL ] . promises ,
193
192
)
194
193
) {
195
194
if ( promise ) {
@@ -221,7 +220,7 @@ export class Test extends SuperRequest {
221
220
#urlSetupPromise: Promise < void > ;
222
221
223
222
public app : string | ListenerLike | ServerLike ;
224
- public url ! : string ;
223
+ public override url ! : string ;
225
224
226
225
constructor (
227
226
app : string | ListenerLike | ServerLike ,
@@ -536,7 +535,7 @@ export class Test extends SuperRequest {
536
535
* @returns {Test } for chaining
537
536
* @public
538
537
*/
539
- end ( callback ?: CallbackHandler ) : this {
538
+ override end ( callback ?: CallbackHandler ) : this {
540
539
Promise . allSettled ( [ this . #serverSetupPromise, this . #urlSetupPromise] ) . then (
541
540
( ) => {
542
541
const self = this ;
You can’t perform that action at this time.
0 commit comments