Microsoft/TypeScript

AbortController.abort is missing in lib.webworker.d.ts

オープン

#49,609 opened on 2022/06/20

 (5 件のコメント) (2 件のリアクション) (0 人の担当者)TypeScript (13,395 件のフォーク)batch import
BugDomain: lib.d.tsHelp Wanted

Repository metrics

Stars
 (108,860 個のスター)
PR merge metrics
 (PR metrics pending)

説明

Bug Report

AbortController.abort remains commented out and is not available in lib.webworker.d.ts.

🔎 Search Terms

AbortController, abort

🕗 Version & Regression Information

It's from v4.7.2. It was OK in v4.6.4. And also, lib.dom.d.ts is fine.

💻 Code

    const controller = new AbortController();
    const cancel = (): void => controller.abort();

🙁 Actual behavior

src/core.ts:99:42 - error TS2339: Property 'abort' does not exist on type 'AbortController'.

99     const cancel = (): void => controller.abort();
                                             ~~~~~

🙂 Expected behavior

The correct behavior is that even in a worker can compile correctly.

コントリビューターガイド