@sasjs/cli
Version:
Command line interface for SASjs
12 lines (11 loc) • 401 B
TypeScript
import { Target } from '@sasjs/utils';
import { FlowWave } from '../../../types';
export declare const validateParams: (target: Target, source: string, csvFile?: string, logFolder?: string) => Promise<{
terminate: boolean;
message?: string | undefined;
flows?: {
[key: string]: FlowWave;
} | undefined;
csvFile?: string | undefined;
logFolder?: string | undefined;
}>;