@eagleoutice/flowr - v2.13.2
    Preparing search index...
    SYNTACTICALLY_VALID: {
        createSearch: () => FlowrSearchBuilder<
            "all",
            [],
            ParentInformation,
            FlowrSearchElements<
                ParentInformation,
                FlowrSearchElement<ParentInformation>[],
            >,
        >;
        info: {
            activeByDefault: false;
            certainty: BestEffort;
            defaultConfig: { disabledFixes: readonly []; preferFix: "remove" };
            description: "Checks whether the code is free of syntax errors, using the configured (error-tolerant) parser, and offers extensible quick-fixes to repair them.";
            name: "Syntactically Valid";
            tags: readonly [Bug, Robustness, QuickFix];
        };
        prettyPrint: {
            full: (result: SyntacticallyValidResult) => string;
            query: (result: SyntacticallyValidResult) => string;
        };
        processSearchResult: (
            _elements: FlowrSearchElements<
                ParentInformation,
                FlowrSearchElement<ParentInformation>[],
            >,
            config: SyntacticallyValidConfig,
            data: ReadonlyFlowrAnalysisProvider<KnownParser>,
        ) => Promise<
            {
                ".meta": SyntacticallyValidMetadata;
                results: SyntacticallyValidResult[];
            },
        >;
    } = ...

    Type Declaration