UNPKG

@minofrk/msf-io-ts

Version:

Type utilities with io-ts for MSF format.

6 lines (3 loc) 159 B
import { union, literal, TypeOf } from 'io-ts'; export const Player = union([literal('arxe'), literal('sorn')]); export type Player = TypeOf<typeof Player>;