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>
16 行
597 B
TypeScript
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
|