forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
47 lines (38 loc) · 1.27 KB
/
index.ts
File metadata and controls
47 lines (38 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
/**
* API Extractor helps with validation, documentation, and reviewing of the exported API for a TypeScript library.
* The `@microsoft/api-extractor` package provides the command-line tool. It also exposes a developer API that you
* can use to invoke API Extractor programmatically.
*
* @packageDocumentation
*/
export { ConsoleMessageId } from './api/ConsoleMessageId';
export { CompilerState, ICompilerStateCreateOptions } from './api/CompilerState';
export {
Extractor,
IExtractorInvokeOptions,
ExtractorResult
} from './api/Extractor';
export {
IExtractorConfigPrepareOptions,
ExtractorConfig
} from './api/ExtractorConfig';
export { ExtractorLogLevel } from './api/ExtractorLogLevel';
export {
ExtractorMessage,
IExtractorMessageProperties,
ExtractorMessageCategory
} from './api/ExtractorMessage';
export { ExtractorMessageId } from './api/ExtractorMessageId';
export {
IConfigCompiler,
IConfigApiReport,
IConfigDocModel,
IConfigDtsRollup,
IConfigTsdocMetadata,
IConfigMessageReportingRule,
IConfigMessageReportingTable,
IExtractorMessagesConfig,
IConfigFile
} from './api/IConfigFile';