smartshell/ts/smartshell.classes.smartshell.ts

16 lines
304 B
TypeScript
Raw Normal View History

2017-03-08 15:51:02 +00:00
import * as plugins from './smartshell.plugins'
import * as smartshellWrap from './smartshell.wrap'
export type TExecutor = 'sh' | 'bash'
export interface ISmartshellContructorOptions {
executor: TExecutor
sourceFiles: string[]
}
export class Smartshell {
constructor() {
}
}