File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ export type StrictSchema<Target = any, Source = any> = {
35
35
/** `destinationProperty` is the name of the property of the target object you want to produce */
36
36
[ destinationProperty in keyof Target ] :
37
37
| ActionString < Source >
38
- | ActionFunction < Target , Source , Target [ destinationProperty ] >
38
+ | { ( iteratee : Source , source : Source [ ] , target : Target [ destinationProperty ] ) : Target [ destinationProperty ] }
39
39
| ActionAggregator < Source >
40
40
| ActionSelector < Source , Target >
41
41
| StrictSchema < Target [ destinationProperty ] , Source > ;
@@ -44,7 +44,7 @@ export type Schema<Target = any, Source = any> = {
44
44
/** `destinationProperty` is the name of the property of the target object you want to produce */
45
45
[ destinationProperty in keyof Target ] ?:
46
46
| ActionString < Source >
47
- | ActionFunction < Target , Source , Target [ destinationProperty ] >
47
+ | { ( iteratee : Source , source : Source [ ] , target : Target [ destinationProperty ] ) : Target [ destinationProperty ] }
48
48
| ActionAggregator < Source >
49
49
| ActionSelector < Source , Target >
50
50
| Schema < Target [ destinationProperty ] , Source > ;
You can’t perform that action at this time.
0 commit comments