Interface ConvertibleScalar<T>

A literal type which is implicitly convertible to a parser. This normally includes the string and RegExp types.

interface ConvertibleScalar<T> {
    [convertibleSymbol](): Parjser<T>;
}

Type Parameters

  • T

Methods