We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nested route params cause the following issue:
import { TypedRoute } from '@routerkit/core'; export type TypedRoutes = { [company: string]: { :project: TypedRoute<[ //<-- syntax error here '/', string, string ]>; }; };
Add the following route and run ng g @routerkit/core:parse --project APP_NAME
ng g @routerkit/core:parse --project APP_NAME
const routes: Routes = [ { path: ':company/:project', component: SomeComponent }, ];
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description of the problem
Nested route params cause the following issue:
Steps To Reproduce
Add the following route and run
ng g @routerkit/core:parse --project APP_NAME
Versions:
The text was updated successfully, but these errors were encountered: