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';