From 5920236300d7f91bee10c9e70da722b007c12214 Mon Sep 17 00:00:00 2001 From: Colton Padden Date: Mon, 6 Dec 2021 09:33:54 -0500 Subject: [PATCH] include @packageDocumentation for plugin and API Signed-off-by: Colton Padden --- plugins/apache-airflow/src/api/index.ts | 7 +++++++ plugins/apache-airflow/src/index.ts | 6 ++++++ 2 files changed, 13 insertions(+) diff --git a/plugins/apache-airflow/src/api/index.ts b/plugins/apache-airflow/src/api/index.ts index 553835129e..c6dfe2205e 100644 --- a/plugins/apache-airflow/src/api/index.ts +++ b/plugins/apache-airflow/src/api/index.ts @@ -14,5 +14,12 @@ * limitations under the License. */ +/** + * An API definition and client for integrating with the Apache Airflow v2+ + * API + * + * @packageDocumentation + */ + export * from './ApacheAirflowApi'; export * from './ApacheAirflowClient'; diff --git a/plugins/apache-airflow/src/index.ts b/plugins/apache-airflow/src/index.ts index 33447426ad..7186839c0a 100644 --- a/plugins/apache-airflow/src/index.ts +++ b/plugins/apache-airflow/src/index.ts @@ -14,4 +14,10 @@ * limitations under the License. */ +/** + * A Backstage plugin that integrates towards Apache Airflow + * + * @packageDocumentation + */ + export { apacheAirflowPlugin, ApacheAirflowPage } from './plugin';