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
10 lines (9 loc) • 826 B
TypeScript
export declare const GLOB_IGNORE_PATTERNS: string[];
export declare function isSfdxProject(cwd?: string): boolean;
export declare function createBlankSfdxProject(cwd?: string, debug?: boolean): Promise<string>;
export declare function listFlowFiles(packageDirs: any): Promise<any[]>;
export declare function isManagedFlow(flowFile: string): Promise<boolean>;
export declare function listApexFiles(packageDirs: any): Promise<any[]>;
export declare function listPageFiles(packageDirs: any): Promise<any[]>;
export declare function returnApexType(apexCode: string): "Test (See All Data)" | "Test" | "Invocable" | "REST" | "Batch" | "Schedulable" | "Lightning Controller" | "Visualforce Controller" | "Trigger Handler" | "Callout" | "JSON" | "SOAP" | "Class";
export declare function updateSfdxProjectApiVersion(): Promise<void>;