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
I have idea how to implement the typed router. We could pass the type with list of available actions with defined required arguments for each action which can be used from linking from the table or redirecting:
typeActions={composers_list: undefined,// no argumentscomposers_update: {id: string}}
The type would force us to:
include those functins on those route namespace when inicializing interval
when redirecting or linking another action to autocomplete action name and also require action parameters
in action itsel if might pass the type to ctx.params
The text was updated successfully, but these errors were encountered:
I have idea how to implement the typed router. We could pass the type with list of available actions with defined required arguments for each action which can be used from linking from the table or redirecting:
The type would force us to:
ctx.params
The text was updated successfully, but these errors were encountered: