Adds @xuqm/h5-sdk/private entry point with JSON-based initialization, feature gating, and error codes for private deployment scenarios. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 行
1.7 KiB
JavaScript
26 行
1.7 KiB
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
|
|
// See LICENSE in the project root for license information.
|
|
/**
|
|
* An object-oriented command-line parser for TypeScript projects.
|
|
*
|
|
* @packageDocumentation
|
|
*/
|
|
export { CommandLineAction } from './providers/CommandLineAction';
|
|
export { DynamicCommandLineAction } from './providers/DynamicCommandLineAction';
|
|
export { ScopedCommandLineAction } from './providers/ScopedCommandLineAction';
|
|
export { AliasCommandLineAction } from './providers/AliasCommandLineAction';
|
|
export { CommandLineParameterKind, CommandLineParameterBase, CommandLineParameterWithArgument } from './parameters/BaseClasses';
|
|
export { CommandLineFlagParameter } from './parameters/CommandLineFlagParameter';
|
|
export { CommandLineStringParameter } from './parameters/CommandLineStringParameter';
|
|
export { CommandLineStringListParameter } from './parameters/CommandLineStringListParameter';
|
|
export { CommandLineIntegerParameter } from './parameters/CommandLineIntegerParameter';
|
|
export { CommandLineIntegerListParameter } from './parameters/CommandLineIntegerListParameter';
|
|
export { CommandLineChoiceParameter } from './parameters/CommandLineChoiceParameter';
|
|
export { CommandLineChoiceListParameter } from './parameters/CommandLineChoiceListParameter';
|
|
export { CommandLineRemainder } from './parameters/CommandLineRemainder';
|
|
export { CommandLineParameterProvider } from './providers/CommandLineParameterProvider';
|
|
export { CommandLineParser } from './providers/CommandLineParser';
|
|
export { DynamicCommandLineParser } from './providers/DynamicCommandLineParser';
|
|
export { CommandLineConstants } from './Constants';
|
|
export { CommandLineHelper } from './CommandLineHelper';
|
|
//# sourceMappingURL=index.js.map
|