@ntix/parsing
    Preparing search index...

    Interface Parser<T>

    A parser

    interface Parser<T = unknown> {
        not: NextBuilder<IComplex.Parser<T>, "not" | "parse">;
        parse: IParse<T>;
        equals(
            value: T,
        ): NextBuilder<IComplex.Parser<T>, "equals", "parse" | "not">;
    }

    Type Parameters

    • T = unknown

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    Methods

    Properties

    not: NextBuilder<IComplex.Parser<T>, "not" | "parse">
    parse: IParse<T>

    Methods