@minofrk/msf-io-ts
Version:
Type utilities with io-ts for MSF format.
14 lines • 389 B
JavaScript
import { type, array, intersection } from 'io-ts';
import { State } from '../state';
import { Variation } from './variation';
import { Options } from './options';
import { FalaType } from './fala-type';
export var RootNode = intersection([
Options,
type({
fala: FalaType,
slax: State,
mit: array(Variation),
}),
]);
//# sourceMappingURL=root-node.js.map