@sasjs/cli
Version:
Command line interface for SASjs
6 lines (5 loc) • 516 B
TypeScript
import { CompileTree, Target } from '@sasjs/utils';
import { TestFlow } from '../../../types';
export declare function compileTestFile(target: Target, filePath: string, testVar: string | undefined, saveToRoot: boolean | undefined, removeOriginalFile: boolean | undefined, compileTree: CompileTree, destinationPath?: string): Promise<void>;
export declare function copyTestMacroFiles(folderAbsolutePath: string): Promise<void>;
export declare const compileTestFlow: (target: Target) => Promise<TestFlow | undefined>;