UNPKG
@minofrk/msf-io-ts
Version:
latest (0.2.0)
0.2.0
0.1.0
0.0.2
0.0.1
0.0.0
Type utilities with io-ts for MSF format.
github.com/minofrk/msf-io-ts
minofrk/msf-io-ts
@minofrk/msf-io-ts
/
src
/
player.ts
6 lines
(3 loc)
•
159 B
text/typescript
View Raw
1
2
3
4
5
6
import
{ union, literal,
TypeOf
}
from
'io-ts'
;
export
const
Player
=
union
([
literal
(
'arxe'
),
literal
(
'sorn'
)]);
export
type
Player
=
TypeOf
<
typeof
Player
>;