@sasjs/cli
Version:
Command line interface for SASjs
13 lines (12 loc) • 617 B
TypeScript
import { Configuration, Target } from '@sasjs/utils';
/**
* Generates lineage in dot language
* By default the dot files will be at 'sasjsbuild/docs' folder
* Generates dot files only for the jobs / services in target (and the root).
* If no target is supplied, first target from sasjsconfig will be used.
* @param {string} target- the target for dot files.
* @param {string} outDirectory- the name of the output folder, picks from sasjsconfig.docConfig if present.
*/
export declare function generateDot(target?: Target, config?: Configuration, outDirectory?: string): Promise<{
outDirectory: string;
}>;