Omit types
Number of word 438
TL;DR
- TypeScriptで
Omit
がサポートされた - UnionTypesから
Omit
する難易度が高い
formik-material-ui
- https://github.com/stackworx/formik-mui/pull/82
- 公式の
Omit
はUnionTypesでもサポートしてるっぽい?🤔
- 公式の
- https://github.com/microsoft/TypeScript/issues/28791
- もともと、UnionTypesからOmit するためには全部入りみたいな状態にしてそいつを対象にPick, Exclude している?
- https://github.com/sindresorhus/type-fest/blob/master/source/omit.d.ts#L17
- type-festはUnionTypesのことは考慮できていない?