api-report

Signed-off-by: Brian Fletcher <brian@roadie.io>
This commit is contained in:
Brian Fletcher
2023-02-02 12:14:37 +00:00
parent 19d4abf72c
commit 0d2336696d
+2 -2
View File
@@ -14,8 +14,8 @@ export interface EventBroker {
}
// @public (undocumented)
export interface EventParams {
eventPayload: unknown;
export interface EventParams<PayloadType = unknown> {
eventPayload: PayloadType;
metadata?: Record<string, string | string[] | undefined>;
topic: string;
}