Initial commit
This commit is contained in:
16
node_modules/@microsoft/tsdoc/lib/parser/TSDocParser.d.ts
generated
vendored
Normal file
16
node_modules/@microsoft/tsdoc/lib/parser/TSDocParser.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
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
|
||||
Reference in New Issue
Block a user