13 lines
470 B
JavaScript
13 lines
470 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var typings_core_1 = require("typings-core");
|
|
function help() {
|
|
return "\ntypings init\n\nOptions:\n [--upgrade] Upgrade `tsd.json` to `typings.json`\n";
|
|
}
|
|
exports.help = help;
|
|
function exec(args, options) {
|
|
var cwd = options.cwd, upgrade = options.upgrade;
|
|
return typings_core_1.init({ cwd: cwd, upgrade: upgrade });
|
|
}
|
|
exports.exec = exec;
|
|
//# sourceMappingURL=bin-init.js.map
|