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>
17 行
946 B
JavaScript
17 行
946 B
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
|
|
// See LICENSE in the project root for license information.
|
|
/**
|
|
* API Extractor helps with validation, documentation, and reviewing of the exported API for a TypeScript library.
|
|
* The `@microsoft/api-extractor` package provides the command-line tool. It also exposes a developer API that you
|
|
* can use to invoke API Extractor programmatically.
|
|
*
|
|
* @packageDocumentation
|
|
*/
|
|
export { ConsoleMessageId } from './api/ConsoleMessageId';
|
|
export { CompilerState } from './api/CompilerState';
|
|
export { Extractor, ExtractorResult } from './api/Extractor';
|
|
export { ExtractorConfig } from './api/ExtractorConfig';
|
|
export { ExtractorLogLevel } from './api/ExtractorLogLevel';
|
|
export { ExtractorMessage, ExtractorMessageCategory } from './api/ExtractorMessage';
|
|
export { ExtractorMessageId } from './api/ExtractorMessageId';
|
|
//# sourceMappingURL=index.js.map
|