Chrono - v2.8.3
    Preparing search index...

    Interface Refiner

    A abstraction for Chrono Refiner.

    Each refiner takes the list of results (from parsers or other refiners) and returns another list of results. Chrono applies each refiner in order and return the output from the last refiner.

    interface Refiner {
        refine: (
            context: ParsingContext,
            results: ParsingResult[],
        ) => ParsingResult[];
    }
    Index

    Properties

    Properties

    refine: (context: ParsingContext, results: ParsingResult[]) => ParsingResult[]