Linting fix: Use ; instead of , in map.

Co-authored-by: Ben Irvin <ben@innerdvations.com>
This commit is contained in:
S Knutsen 2023-09-04 13:53:42 +02:00 committed by GitHub
parent 96db3913df
commit 974a18c13e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@ import { Event, Action } from '../';
type SubscriberFn = (event: Event) => Promise<void> | void;
type SubscriberMap = {
models?: string[],
models?: string[];
} & {
[k in Action]?: SubscriberFn;
};