Initial commit
This commit is contained in:
49
node_modules/@rushstack/ts-command-line/lib/index.js
generated
vendored
Normal file
49
node_modules/@rushstack/ts-command-line/lib/index.js
generated
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
"use strict";
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
|
||||
// See LICENSE in the project root for license information.
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CommandLineHelper = exports.CommandLineConstants = exports.DynamicCommandLineParser = exports.CommandLineParser = exports.CommandLineParameterProvider = exports.CommandLineRemainder = exports.CommandLineChoiceListParameter = exports.CommandLineChoiceParameter = exports.CommandLineIntegerListParameter = exports.CommandLineIntegerParameter = exports.CommandLineStringListParameter = exports.CommandLineStringParameter = exports.CommandLineFlagParameter = exports.CommandLineParameterWithArgument = exports.CommandLineParameterBase = exports.CommandLineParameterKind = exports.AliasCommandLineAction = exports.ScopedCommandLineAction = exports.DynamicCommandLineAction = exports.CommandLineAction = void 0;
|
||||
/**
|
||||
* An object-oriented command-line parser for TypeScript projects.
|
||||
*
|
||||
* @packageDocumentation
|
||||
*/
|
||||
var CommandLineAction_1 = require("./providers/CommandLineAction");
|
||||
Object.defineProperty(exports, "CommandLineAction", { enumerable: true, get: function () { return CommandLineAction_1.CommandLineAction; } });
|
||||
var DynamicCommandLineAction_1 = require("./providers/DynamicCommandLineAction");
|
||||
Object.defineProperty(exports, "DynamicCommandLineAction", { enumerable: true, get: function () { return DynamicCommandLineAction_1.DynamicCommandLineAction; } });
|
||||
var ScopedCommandLineAction_1 = require("./providers/ScopedCommandLineAction");
|
||||
Object.defineProperty(exports, "ScopedCommandLineAction", { enumerable: true, get: function () { return ScopedCommandLineAction_1.ScopedCommandLineAction; } });
|
||||
var AliasCommandLineAction_1 = require("./providers/AliasCommandLineAction");
|
||||
Object.defineProperty(exports, "AliasCommandLineAction", { enumerable: true, get: function () { return AliasCommandLineAction_1.AliasCommandLineAction; } });
|
||||
var BaseClasses_1 = require("./parameters/BaseClasses");
|
||||
Object.defineProperty(exports, "CommandLineParameterKind", { enumerable: true, get: function () { return BaseClasses_1.CommandLineParameterKind; } });
|
||||
Object.defineProperty(exports, "CommandLineParameterBase", { enumerable: true, get: function () { return BaseClasses_1.CommandLineParameterBase; } });
|
||||
Object.defineProperty(exports, "CommandLineParameterWithArgument", { enumerable: true, get: function () { return BaseClasses_1.CommandLineParameterWithArgument; } });
|
||||
var CommandLineFlagParameter_1 = require("./parameters/CommandLineFlagParameter");
|
||||
Object.defineProperty(exports, "CommandLineFlagParameter", { enumerable: true, get: function () { return CommandLineFlagParameter_1.CommandLineFlagParameter; } });
|
||||
var CommandLineStringParameter_1 = require("./parameters/CommandLineStringParameter");
|
||||
Object.defineProperty(exports, "CommandLineStringParameter", { enumerable: true, get: function () { return CommandLineStringParameter_1.CommandLineStringParameter; } });
|
||||
var CommandLineStringListParameter_1 = require("./parameters/CommandLineStringListParameter");
|
||||
Object.defineProperty(exports, "CommandLineStringListParameter", { enumerable: true, get: function () { return CommandLineStringListParameter_1.CommandLineStringListParameter; } });
|
||||
var CommandLineIntegerParameter_1 = require("./parameters/CommandLineIntegerParameter");
|
||||
Object.defineProperty(exports, "CommandLineIntegerParameter", { enumerable: true, get: function () { return CommandLineIntegerParameter_1.CommandLineIntegerParameter; } });
|
||||
var CommandLineIntegerListParameter_1 = require("./parameters/CommandLineIntegerListParameter");
|
||||
Object.defineProperty(exports, "CommandLineIntegerListParameter", { enumerable: true, get: function () { return CommandLineIntegerListParameter_1.CommandLineIntegerListParameter; } });
|
||||
var CommandLineChoiceParameter_1 = require("./parameters/CommandLineChoiceParameter");
|
||||
Object.defineProperty(exports, "CommandLineChoiceParameter", { enumerable: true, get: function () { return CommandLineChoiceParameter_1.CommandLineChoiceParameter; } });
|
||||
var CommandLineChoiceListParameter_1 = require("./parameters/CommandLineChoiceListParameter");
|
||||
Object.defineProperty(exports, "CommandLineChoiceListParameter", { enumerable: true, get: function () { return CommandLineChoiceListParameter_1.CommandLineChoiceListParameter; } });
|
||||
var CommandLineRemainder_1 = require("./parameters/CommandLineRemainder");
|
||||
Object.defineProperty(exports, "CommandLineRemainder", { enumerable: true, get: function () { return CommandLineRemainder_1.CommandLineRemainder; } });
|
||||
var CommandLineParameterProvider_1 = require("./providers/CommandLineParameterProvider");
|
||||
Object.defineProperty(exports, "CommandLineParameterProvider", { enumerable: true, get: function () { return CommandLineParameterProvider_1.CommandLineParameterProvider; } });
|
||||
var CommandLineParser_1 = require("./providers/CommandLineParser");
|
||||
Object.defineProperty(exports, "CommandLineParser", { enumerable: true, get: function () { return CommandLineParser_1.CommandLineParser; } });
|
||||
var DynamicCommandLineParser_1 = require("./providers/DynamicCommandLineParser");
|
||||
Object.defineProperty(exports, "DynamicCommandLineParser", { enumerable: true, get: function () { return DynamicCommandLineParser_1.DynamicCommandLineParser; } });
|
||||
var Constants_1 = require("./Constants");
|
||||
Object.defineProperty(exports, "CommandLineConstants", { enumerable: true, get: function () { return Constants_1.CommandLineConstants; } });
|
||||
var CommandLineHelper_1 = require("./CommandLineHelper");
|
||||
Object.defineProperty(exports, "CommandLineHelper", { enumerable: true, get: function () { return CommandLineHelper_1.CommandLineHelper; } });
|
||||
//# sourceMappingURL=index.js.map
|
||||
Reference in New Issue
Block a user