smartfile/ts/smartfile.fsaction.ts
2016-03-18 09:19:46 +00:00

7 lines
199 B
TypeScript

/// <reference path="./typings/main.d.ts" />
import plugins = require("./smartfile.plugins");
export let copy = function(fromArg:string,toArg:string){
plugins.shelljs.cp("-r",fromArg,toArg);
};