File tree Expand file tree Collapse file tree
api-documenter/src/plugin Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ import { PluginFeatureInitialization } from './PluginFeature';
77/**
88 * Defines a "feature" that is provided by an API Documenter plugin. A feature is a user-defined module
99 * that customizes the behavior of API Documenter.
10+ *
11+ * @public
1012 */
1113export interface IFeatureDefinition {
1214 /**
@@ -58,6 +60,7 @@ export interface IFeatureDefinition {
5860 * ]
5961 * };
6062 * ```
63+ * @public
6164 */
6265export interface IApiDocumenterPluginManifest {
6366 /**
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ export class Rush {
4646 *
4747 * @remarks
4848 * Earlier versions of the rush frontend used a different API contract. In the old contract,
49- * the second argument was the `isManaged` value of the {@see ILaunchOptions} object.
49+ * the second argument was the `isManaged` value of the {@link ILaunchOptions} object.
5050 *
5151 * Even though this API isn't documented, it is still supported for legacy compatibility.
5252 */
@@ -91,7 +91,7 @@ export class Rush {
9191 }
9292
9393 /**
94- * This function normalizes legacy options to the current {@see ILaunchOptions} object.
94+ * This function normalizes legacy options to the current {@link ILaunchOptions} object.
9595 */
9696 private static _normalizeLaunchOptions ( arg : ILaunchOptions ) : ILaunchOptions {
9797 return ( typeof arg === 'boolean' )
You can’t perform that action at this time.
0 commit comments