@sasjs/cli
Version:
Command line interface for SASjs
11 lines (10 loc) • 445 B
TypeScript
/**
* Returns list of Inputs and populates Map of Nodes
* @param {string} fileName- Name of the file from which Inputs need to extract
* @param {string} fileContent- Contents of the file from which Inputs need to extract
* @param {Map} paramNodes- Map for params(Inputs/Outputs)
*/
export declare function getFileInputs(fileName: string, fileContent: string, paramNodes: Map<string, {
edges: string[];
label: string;
}>): string[];