Remove maybe types
Open
enhancement
- Dominant language
- TypeScript
- Stars
- 20.3k
- Forks
- 2.1k
- Avg merge
- 44m
- Merged PRs (30d)
- 6
Description
Optional arguments and parameters should not use the maybe type except where passing in a null value is semantically different from passing in an undefined value. So
```
operationName?: ?string
```
would become just
```
operationName?: string,
```
Contributor guide
Assessment
This issue has not been assessed yet.