@@ -430,7 +430,7 @@ const useSetCallback = <Parameter, Thing, StoreOrQueries>(
430430 getDeps : DependencyList = EMPTY_ARRAY ,
431431 then : ( obj : StoreOrQueries , thing : Thing ) => void = getUndefined ,
432432 thenDeps : DependencyList = EMPTY_ARRAY ,
433- methodPrefix : string = EMPTY_STRING ,
433+ methodPrefix ? : string ,
434434 ...args : ( Id | GetId < Parameter > ) [ ]
435435) : ParameterizedCallback < Parameter > =>
436436 useCallback (
@@ -462,9 +462,9 @@ const useStoreSetCallback = <Parameter, Thing>(
462462 storeOrStoreId : StoreOrStoreId | undefined ,
463463 settable : string ,
464464 get : ( parameter : Parameter , store : Store ) => Thing ,
465- getDeps : DependencyList = EMPTY_ARRAY ,
466- then : ( store : Store , thing : Thing ) => void = getUndefined ,
467- thenDeps : DependencyList = EMPTY_ARRAY ,
465+ getDeps ? : DependencyList ,
466+ then ? : ( store : Store , thing : Thing ) => void ,
467+ thenDeps ? : DependencyList ,
468468 ...args : ( Id | GetId < Parameter > ) [ ]
469469) : ParameterizedCallback < Parameter > =>
470470 useSetCallback (
@@ -482,9 +482,9 @@ const useQueriesSetCallback = <Parameter, Thing>(
482482 queriesOrQueriesId : QueriesOrQueriesId | undefined ,
483483 settable : string ,
484484 get : ( parameter : Parameter , queries : Queries ) => Thing ,
485- getDeps : DependencyList = EMPTY_ARRAY ,
486- then : ( queries : Queries , thing : Thing ) => void = getUndefined ,
487- thenDeps : DependencyList = EMPTY_ARRAY ,
485+ getDeps ? : DependencyList ,
486+ then ? : ( queries : Queries , thing : Thing ) => void ,
487+ thenDeps ? : DependencyList ,
488488 ...args : ( Id | GetId < Parameter > ) [ ]
489489) : ParameterizedCallback < Parameter > =>
490490 useSetCallback (
0 commit comments