12 lines
363 B
TypeScript
12 lines
363 B
TypeScript
|
export declare type TExecutor = 'sh' | 'bash';
|
||
|
export interface ISmartshellContructorOptions {
|
||
|
executor: TExecutor;
|
||
|
sourceFilePaths: string[];
|
||
|
}
|
||
|
export declare class Smartshell {
|
||
|
sourceFiles: string[];
|
||
|
constructor(optionsArg: ISmartshellContructorOptions);
|
||
|
addSourceFiles(sourceFilePathsArray: string[]): void;
|
||
|
cleanSourceFiles(): void;
|
||
|
}
|