You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 16, 2024. It is now read-only.
* @param depsWithIndicator - Dependencies that have a unique key/name indicator.
82
86
*/
83
87
constcreateHOC=(
84
-
ReactComponent: ComponentClass<any,any>,
88
+
ReactComponent: React.ComponentClass<any,any>,
85
89
agileInstance: Agile,
86
90
depsWithoutIndicator: Array<Observer>,
87
91
depsWithIndicator: DepsWithIndicatorType
88
-
): ComponentClass<any,any>=>{
92
+
): React.ComponentClass<any,any>=>{
89
93
returnclassextendsReactComponent{
90
94
publicagileInstance: Agile;
91
95
publicwaitForMount: boolean;
@@ -252,3 +256,11 @@ export type DepsType =
252
256
// | SubscribableAgileInstancesType; // Not allowed because each passed Agile Instance is detect as object and will run through 'formatDepsWithIndicator'
Copy file name to clipboardExpand all lines: packages/react/src/event/hooks/useEvent.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
importtype{Event,EventCallbackFunction}from'@agile-ts/event';// When only importing the types the "Can't resolve '@agile-ts/event'" error doesn't occur
0 commit comments