E.g. trying to call `AbortSignal` with new throws `Illegal constructor` error. ``` > new AbortSignal() Uncaught TypeError: Illegal constructor. ``` This is not currently handled by the declaration: ``` declare var AbortSignal: { prototype: AbortSignal; new(): AbortSignal; }; ```