Skip to content

gunshi / combinators / Combinator

Type Alias: Combinator<T>

ts
type Combinator<T> = object;

Experimental

A combinator produced by combinator factory functions.

Type Parameters

Type ParameterDescription
TThe parsed value type.

Properties

PropertyTypeDescription
parse(value) => TThe parse function that converts a string to the desired type.

Released under the MIT License.