@ntix/parsing
    Preparing search index...

    Interface Parser

    A parser

    interface Parser {
        not: NextBuilder<IBoolean.Parser, "not" | "parse">;
        parse: IParse<boolean>;
        equals(
            value: boolean,
        ): NextBuilder<IBoolean.Parser, "equals", "parse" | "not">;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    Methods

    Properties

    not: NextBuilder<IBoolean.Parser, "not" | "parse">
    parse: IParse<boolean>

    Methods