Initial commit

This commit is contained in:
2022-02-18 16:04:45 +02:00
commit 36d7d09b01
9 changed files with 97 additions and 0 deletions

1
lib/index.d.ts vendored Normal file
View File

@@ -0,0 +1 @@
export declare const getCLIArguments: () => void;

8
lib/index.js Normal file
View File

@@ -0,0 +1,8 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getCLIArguments = void 0;
var getCLIArguments = function () {
console.log(process.argv);
};
exports.getCLIArguments = getCLIArguments;
(0, exports.getCLIArguments)();