We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29037e1 commit 61188e2Copy full SHA for 61188e2
packages/reactant-module/src/interfaces.ts
@@ -149,7 +149,9 @@ export type FirstParameter<T extends (...args: any) => any> = T extends (
149
: never;
150
151
type Collection<T> = {
152
- [P in Exclude<keyof T, keyof Service>]-?: NonNullable<T[P]>[];
+ [P in Exclude<keyof T, keyof Service | typeof storeKey>]-?: NonNullable<
153
+ T[P]
154
+ >[];
155
};
156
157
export type PluginHooks = Collection<PluginModule>;
0 commit comments