UNPKG

@sasjs/cli

Version:

Command line interface for SASjs

14 lines (13 loc) 497 B
/** * Saves log to a file. * @param logData - log content. * @param logFile - file path to log file. * @param jobPath - file path to the job submitted for execution. */ export declare const saveLog: (logData: any, logFile: string | undefined, jobPath: string) => Promise<void>; /** * Saves job output to the file. * @param outputData - job output. * @param outputFile - file path to output file. */ export declare const saveOutput: (outputData: any, outputFile: string) => Promise<void>;