UNPKG

@flow-scanner/lightning-flow-scanner-core

Version:

A lightweight engine for Flow metadata in Node.js, and browser environments. Assess and enhance Salesforce Flow automations for best practices, security, governor limits, and performance issues.

9 lines (8 loc) 334 B
import { Flow } from "../models/Flow"; import { FlowNode } from "../models/FlowNode"; export declare class Compiler { visitedElements: Set<string>; constructor(); traverseFlow(flow: Flow, startElementName: string, visitCallback: (element: FlowNode) => void, endElementName?: string): void; private findNextElements; }