Selaa lähdekoodia

Fixes lint error

main
Eric Amodio 3 vuotta sitten
vanhempi
commit
b6352078ec
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      src/system/decorators/timeout.ts

+ 1
- 1
src/system/decorators/timeout.ts Näytä tiedosto

@ -49,7 +49,7 @@ export function timeout(timeoutOrTimeoutFromLastArg: number | boolean, defaultTi
const id = setTimeout(() => {
clearTimeout(id);
reject(new CancellationError(result, `Timed out after ${timeout} ms`));
}, timeout!);
}, timeout);
}),
]);
};

Ladataan…
Peruuta
Tallenna