STATIC_DATAFLOW: {
    dependencies: readonly ["normalize"];
    description: "Construct the dataflow graph";
    executed: OncePerFile;
    humanReadableName: "dataflow";
    name: "dataflow";
    printer: {
        "0": <Input>(input: Input) => Input;
        "2": (df: DataflowInformation) => string;
        "3": (df: DataflowInformation) => string;
        "4": (df: DataflowInformation) => string;
        "5": (
            df: DataflowInformation,
            config: QuadSerializationConfiguration,
        ) => string;
    };
    processor: (
        results: {
            normalize?: NormalizedAst<ParentInformation, RNode<ParentInformation>>;
        },
        input: { parser?: Parser<KnownParserType>; request?: RParseRequests },
    ) => DataflowInformation;
    requiredInput: {};
} = ...

Type declaration