fix remaining alpha exports

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-02-02 20:32:59 +01:00
parent 8ce58b40fb
commit 4c08ac06fc
35 changed files with 125 additions and 131 deletions
+4 -8
View File
@@ -3,28 +3,24 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
import { EventBroker } from '@backstage/plugin-events-node';
import { EventPublisher } from '@backstage/plugin-events-node';
import { EventSubscriber } from '@backstage/plugin-events-node';
import { ExtensionPoint } from '@backstage/backend-plugin-api';
import { HttpPostIngressOptions } from '@backstage/plugin-events-node';
// @alpha (undocumented)
export interface EventsExtensionPoint {
// Warning: (ae-forgotten-export) The symbol "HttpPostIngressOptions" needs to be exported by the entry point alpha.d.ts
//
// (undocumented)
addHttpPostIngress(options: HttpPostIngressOptions): void;
// Warning: (ae-forgotten-export) The symbol "EventPublisher" needs to be exported by the entry point alpha.d.ts
//
// (undocumented)
addPublishers(
...publishers: Array<EventPublisher | Array<EventPublisher>>
): void;
// Warning: (ae-forgotten-export) The symbol "EventSubscriber" needs to be exported by the entry point alpha.d.ts
//
// (undocumented)
addSubscribers(
...subscribers: Array<EventSubscriber | Array<EventSubscriber>>
): void;
// Warning: (ae-forgotten-export) The symbol "EventBroker" needs to be exported by the entry point alpha.d.ts
//
// (undocumented)
setEventBroker(eventBroker: EventBroker): void;
}
+1 -1
View File
@@ -20,7 +20,7 @@ import {
EventPublisher,
EventSubscriber,
HttpPostIngressOptions,
} from './api';
} from '@backstage/plugin-events-node';
/**
* @alpha