Open kevinbarabash opened 4 months ago
The following should not be allow:
type Foo = fn (Point) -> number;
the following is what's required:
type Foo = fn (p: Point) -> number;
The following should not be allow:
the following is what's required: