UNPKG

@sasjs/cli

Version:

Command line interface for SASjs

12 lines (11 loc) 543 B
import { Target } from '@sasjs/utils'; /** * Runs SAS code from a given file on the specified target. * @param {Target} target - the target to run the SAS code on. * @param {string} filePath - the path to the file containing SAS code. * @param {boolean} compile - compiles sas file present at 'filePath' before running code. * @param {string} logFile - (Optional) Path to log file. */ export declare function runSasCode(target: Target, filePath: string, compile?: boolean, logFile?: string, source?: string): Promise<{ log: any; }>;