io-tsとTypeScriptの型の対応
対応表
io-ts/index.md at master · gcanti/io-ts
string Unionの作り方が若干クセがある
'red' | 'yellow' | 'blue'
みたいな型の場合は
t.union()
を使わない
https://github.com/gcanti/io-ts/blob/master/index.md#union-of-string-literals
こうする
code:ts
const Good = t.keyof({
foo: null,
bar: null,
baz: null
// etc...
})