1 | import { TextRange } from './TextRange';
|
2 | import { ParserContext } from './ParserContext';
|
3 | import { TSDocConfiguration } from '../configuration/TSDocConfiguration';
|
4 | /**
|
5 | * The main API for parsing TSDoc comments.
|
6 | */
|
7 | export declare class TSDocParser {
|
8 | /**
|
9 | * The configuration that was provided for the TSDocParser.
|
10 | */
|
11 | readonly configuration: TSDocConfiguration;
|
12 | constructor(configuration?: TSDocConfiguration);
|
13 | parseString(text: string): ParserContext;
|
14 | parseRange(range: TextRange): ParserContext;
|
15 | }
|
16 | //# sourceMappingURL=TSDocParser.d.ts.map |
\ | No newline at end of file |