-
Notifications
You must be signed in to change notification settings - Fork 621
/
Copy pathindex.ts
49 lines (39 loc) · 1.48 KB
/
index.ts
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
48
49
// 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, type ICompilerStateCreateOptions } from './api/CompilerState';
export { Extractor, type IExtractorInvokeOptions, ExtractorResult } from './api/Extractor';
export {
type IExtractorConfigApiReport,
type IExtractorConfigPrepareOptions,
type IExtractorConfigLoadForFolderOptions,
ExtractorConfig
} from './api/ExtractorConfig';
export type { IApiModelGenerationOptions } from './generators/ApiModelGenerator';
export { ExtractorLogLevel } from './api/ExtractorLogLevel';
export {
ExtractorMessage,
type IExtractorMessageProperties,
ExtractorMessageCategory
} from './api/ExtractorMessage';
export { ExtractorMessageId } from './api/ExtractorMessageId';
export type {
ApiReportVariant,
IConfigCompiler,
IConfigApiReport,
IConfigDocModel,
IConfigDtsRollup,
IConfigTsdocMetadata,
IConfigMessageReportingRule,
IConfigMessageReportingTable,
IExtractorMessagesConfig,
IConfigFile,
ReleaseTagForTrim
} from './api/IConfigFile';