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
27 lines (25 loc) · 1018 Bytes
/
index.ts
File metadata and controls
27 lines (25 loc) · 1018 Bytes
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
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
/**
* API Documenter generates an API reference website from the .api.json files created by API Extractor.
* The `@microsoft/api-documenter` package provides the command-line tool. It also exposes a developer API that you
* can use to create plugins that customize how API Documenter generates documentation.
*
* @packageDocumentation
*/
export {
IFeatureDefinition,
IApiDocumenterPluginManifest
} from './plugin/IApiDocumenterPluginManifest';
export { MarkdownDocumenterAccessor } from './plugin/MarkdownDocumenterAccessor';
export {
MarkdownDocumenterFeatureContext,
IMarkdownDocumenterFeatureOnBeforeWritePageArgs,
IMarkdownDocumenterFeatureOnFinishedArgs,
MarkdownDocumenterFeature
} from './plugin/MarkdownDocumenterFeature';
export {
PluginFeature,
PluginFeatureContext,
PluginFeatureInitialization
} from './plugin/PluginFeature';