UNPKG

salesforce-alm

Version:

This package contains tools, and APIs, for an improved salesforce.com developer experience.

16 lines (15 loc) 551 B
import { ManifestEntry } from './types'; /** * Parse the manifest file and create a list ManifestEntry objects. * * @param manifestPath {string} The filepath for the manifest * @returns {ManifestEntry[]} An array for ManifestEntry objects from the manifest. */ export declare const parseToManifestEntriesArray: (manifestPath: string) => Promise<ManifestEntry[]>; /** * Convert the argument into an array datatype * * @param arrayOrObjectOrUndefined * @returns Array */ export declare const toArray: (arrayOrObjectOrUndefined: any) => any[];