Files
DefinitelyTyped/types/chai
Jonatan Magnusson 808267e6e8 Make Chai PropertyChange argument 'property' optional (#38405)
Chai allows passing a single argument to its increase,
decrease and change tests:

```ts
let y;
expect(() => { y += 1 }).to.increase(() => y);
```

The type definitions of PropertyChange, used by the three
tests mentionds, did not allow passing a single argument.
2019-09-17 06:56:14 -04:00
..