XuqmGroup-H5SDK/node_modules/@microsoft/api-extractor/lib-dts/collector/SymbolMetadata.d.ts
徐勤民 e34fa2052a feat(private): add private deployment SDK module
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>
2026-05-18 21:08:08 +08:00

16 行
597 B
TypeScript

import type { ReleaseTag } from '@microsoft/api-extractor-model';
/**
* Constructor parameters for `SymbolMetadata`.
*/
export interface ISymbolMetadataOptions {
maxEffectiveReleaseTag: ReleaseTag;
}
/**
* Stores the Collector's additional analysis for an `AstSymbol`. This object is assigned to `AstSymbol.metadata`
* but consumers must always obtain it by calling `Collector.fetchSymbolMetadata()`.
*/
export declare class SymbolMetadata {
readonly maxEffectiveReleaseTag: ReleaseTag;
constructor(options: ISymbolMetadataOptions);
}
//# sourceMappingURL=SymbolMetadata.d.ts.map