@ntix/parsing
    Preparing search index...

    Interface ICurrentParser<T>

    A parser function and negate value

    The parse function should return a negatable (non-normal) result ie, it should return errors on success and failure to parse so the result can be negated

    interface ICurrentParser<T> {
        negate: boolean;
        parse: IParse<T>;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    negate: boolean
    parse: IParse<T>