chore: Add API Reference

Signed-off-by: Adam Harvey <adaharve@cisco.com>
This commit is contained in:
Adam Harvey
2023-03-17 22:16:21 -04:00
parent 5b73227f42
commit ebeac7ccc9
6 changed files with 18 additions and 6 deletions
@@ -25,6 +25,4 @@ export class GoogleAnalytics implements AnalyticsApi {
},
): GoogleAnalytics;
}
// (No @packageDocumentation comment for this package)
```
+6
View File
@@ -14,5 +14,11 @@
* limitations under the License.
*/
/**
* Analytics Module plugin for Google Analytics.
*
* @packageDocumentation
*/
export { analyticsModuleGA } from './plugin';
export * from './apis/implementations/AnalyticsApi';
-2
View File
@@ -40,6 +40,4 @@ export const apolloExplorerPlugin: BackstagePlugin<
{},
{}
>;
// (No @packageDocumentation comment for this package)
```
+6
View File
@@ -13,4 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Integrates Apollo Explorer graphs as a tool to browse GraphQL API endpoints inside Backstage.
*
* @packageDocumentation
*/
export { apolloExplorerPlugin, ApolloExplorerPage } from './plugin';
-2
View File
@@ -16,6 +16,4 @@ export const DynatraceTab: () => JSX.Element;
// @public
export const isDynatraceAvailable: (entity: Entity) => boolean;
// (No @packageDocumentation comment for this package)
```
+6
View File
@@ -14,4 +14,10 @@
* limitations under the License.
*/
/**
* A Backstage plugin that integrates towards Dynatrace.
*
* @packageDocumentation
*/
export { dynatracePlugin, DynatraceTab, isDynatraceAvailable } from './plugin';