NORMALIZE: {
    dependencies: readonly ["parse"];
    description: "Normalize the AST to flowR's AST";
    executed: OncePerFile;
    humanReadableName: "normalize";
    name: "normalize";
    printer: {
        "0": <Input>(input: Input) => Input;
        "2": (ast: NormalizedAst) => string;
        "3": (ast: NormalizedAst) => string;
        "4": (ast: NormalizedAst) => string;
        "5": (
            ast: NormalizedAst,
            config: QuadSerializationConfiguration,
        ) => string;
    };
    processor: (
        results: { parse?: ParseStepOutput<string> },
        input: Partial<NormalizeRequiredInput>,
    ) => NormalizedAst<ParentInformation, RNode<ParentInformation>>;
    requiredInput: NormalizeRequiredInput;
} = ...

Type declaration