feat: start implementing multiple service factories

Co-authored-by: Patrik Oldsberg <poldsberg@gmail.com>
Signed-off-by: Camila Belo <camilaibs@gmail.com>
This commit is contained in:
Camila Belo
2024-07-08 16:08:04 +02:00
committed by Patrik Oldsberg
parent 88ed7f5926
commit 11aaaa496a
33 changed files with 563 additions and 250 deletions
+2 -1
View File
@@ -66,11 +66,12 @@ export type EventsServiceEventHandler = (params: EventParams) => Promise<void>;
export const eventsServiceFactory: ServiceFactoryCompat<
EventsService,
'plugin',
true,
undefined
>;
// @public
export const eventsServiceRef: ServiceRef<EventsService, 'plugin'>;
export const eventsServiceRef: ServiceRef<EventsService, 'plugin', true>;
// @public (undocumented)
export type EventsServiceSubscribeOptions = {