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 行
570 B
TypeScript
16 行
570 B
TypeScript
import { TextRange } from './TextRange';
|
|
import { ParserContext } from './ParserContext';
|
|
import { TSDocConfiguration } from '../configuration/TSDocConfiguration';
|
|
/**
|
|
* The main API for parsing TSDoc comments.
|
|
*/
|
|
export declare class TSDocParser {
|
|
/**
|
|
* The configuration that was provided for the TSDocParser.
|
|
*/
|
|
readonly configuration: TSDocConfiguration;
|
|
constructor(configuration?: TSDocConfiguration);
|
|
parseString(text: string): ParserContext;
|
|
parseRange(range: TextRange): ParserContext;
|
|
}
|
|
//# sourceMappingURL=TSDocParser.d.ts.map
|