Closed
Description
TypeScript Version: 3.2.0-dev.20181110
Search Terms:
Code
interface I {
method(args: typeof arguments): void;
fn: (args: typeof arguments) => void;
(args: typeof arguments): void;
new (args: typeof arguments): void;
construct: new (args: typeof arguments) => void;
}
Expected behavior:
Error on all occurrences of arguments
.
Actual behavior:
Error Cannot find name 'arguments'.
on all signatures but method
.