@sasjs/cli
Version:
Command line interface for SASjs
11 lines (10 loc) • 652 B
TypeScript
import { Folder } from '../types';
export declare function createFolderStructure(folder: Folder, parentFolderName?: string): Promise<void>;
export declare function isSasFile(filePath: string): boolean;
export declare function isJsonFile(filePath: string): boolean;
export declare function isCsvFile(filePath: string): boolean;
export declare function isShellScript(filePath: string): boolean;
export declare function isPowerShellScript(filePath: string): boolean;
export declare const sanitizeFileName: (fileName: string) => string;
export declare function getBrief(fileContent: string): string | undefined;
export declare const sasFileRegExp: RegExp;