mirror of
https://github.com/strapi/strapi.git
synced 2025-11-13 16:52:18 +00:00
Linting fix: Use ; instead of , in map.
Co-authored-by: Ben Irvin <ben@innerdvations.com>
This commit is contained in:
parent
96db3913df
commit
974a18c13e
@ -3,7 +3,7 @@ import { Event, Action } from '../';
|
|||||||
type SubscriberFn = (event: Event) => Promise<void> | void;
|
type SubscriberFn = (event: Event) => Promise<void> | void;
|
||||||
|
|
||||||
type SubscriberMap = {
|
type SubscriberMap = {
|
||||||
models?: string[],
|
models?: string[];
|
||||||
} & {
|
} & {
|
||||||
[k in Action]?: SubscriberFn;
|
[k in Action]?: SubscriberFn;
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user