sfdx-hardis
Version:
Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards
14 lines (13 loc) • 345 B
TypeScript
interface FlowMap {
"description"?: string;
"label"?: string;
"processType"?: string;
"start"?: any;
"status"?: "Active" | "Draft";
[propName: string]: any;
}
export declare function parseFlow(xml: string, renderAs?: "mermaid" | "plantuml", options?: any): Promise<{
flowMap: FlowMap;
uml: string;
}>;
export {};