smartarchive/ts/test.ts
2016-01-20 04:01:21 +01:00

11 lines
308 B
TypeScript

/// <reference path="./typings/tsd.d.ts" />
var remotezip = require("./index.js");
var path = require("path");
remotezip.get({
from:"https://github.com/UmbrellaZone/legaldocs/archive/master.zip",
toPath:path.resolve("./test/"),
cb: function(){
console.log("This is a callback")
}
});