mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-25 14:26:29 +00:00
This adds support for `void` and `null` in type annotations:
```js
function f(): void {}
function g(): null {
return null;
}
```
Towards #512