@@ -25,21 +25,21 @@ import {UrlSegment, UrlSegmentGroup} from './url_tree';
2525 * - `redirectTo` is the url fragment which will replace the current matched segment.
2626 * - `outlet` is the name of the outlet the component should be placed into.
2727 * - `canActivate` is an array of DI tokens used to look up CanActivate handlers. See
28- * { @link CanActivate} for more info.
28+ * ` CanActivate` for more info.
2929 * - `canActivateChild` is an array of DI tokens used to look up CanActivateChild handlers. See
30- * { @link CanActivateChild} for more info.
30+ * ` CanActivateChild` for more info.
3131 * - `canDeactivate` is an array of DI tokens used to look up CanDeactivate handlers. See
32- * { @link CanDeactivate} for more info.
32+ * ` CanDeactivate` for more info.
3333 * - `canLoad` is an array of DI tokens used to look up CanLoad handlers. See
34- * { @link CanLoad} for more info.
34+ * ` CanLoad` for more info.
3535 * - `data` is additional data provided to the component via `ActivatedRoute`.
36- * - `resolve` is a map of DI tokens used to look up data resolvers. See { @link Resolve} for more
36+ * - `resolve` is a map of DI tokens used to look up data resolvers. See ` Resolve` for more
3737 * info.
3838 * - `runGuardsAndResolvers` defines when guards and resolvers will be run. By default they run only
3939 * when the matrix parameters of the route change. When set to `paramsOrQueryParamsChange` they
4040 * will also run when query params change. And when set to `always`, they will run every time.
4141 * - `children` is an array of child route definitions.
42- * - `loadChildren` is a reference to lazy loaded child routes. See { @link LoadChildren} for more
42+ * - `loadChildren` is a reference to lazy loaded child routes. See ` LoadChildren` for more
4343 * info.
4444 *
4545 * ### Simple Configuration
@@ -295,7 +295,7 @@ export type UrlMatcher = (segments: UrlSegment[], group: UrlSegmentGroup, route:
295295 *
296296 * Represents the static data associated with a particular route.
297297 *
298- * See { @link Routes} for more details.
298+ * See ` Routes` for more details.
299299 * @stable
300300 */
301301export type Data = {
@@ -307,7 +307,7 @@ export type Data = {
307307 *
308308 * Represents the resolved data associated with a particular route.
309309 *
310- * See { @link Routes} for more details.
310+ * See ` Routes` for more details.
311311 * @stable
312312 */
313313export type ResolveData = {
@@ -319,7 +319,7 @@ export type ResolveData = {
319319 *
320320 * The type of `loadChildren`.
321321 *
322- * See { @link Routes} for more details.
322+ * See ` Routes` for more details.
323323 * @stable
324324 */
325325export type LoadChildrenCallback = ( ) =>
@@ -330,7 +330,7 @@ export type LoadChildrenCallback = () =>
330330 *
331331 * The type of `loadChildren`.
332332 *
333- * See { @link Routes} for more details.
333+ * See ` Routes` for more details.
334334 * @stable
335335 */
336336export type LoadChildren = string | LoadChildrenCallback ;
@@ -340,7 +340,7 @@ export type LoadChildren = string | LoadChildrenCallback;
340340 *
341341 * The type of `queryParamsHandling`.
342342 *
343- * See { @link RouterLink} for more details.
343+ * See ` RouterLink` for more details.
344344 * @stable
345345 */
346346export type QueryParamsHandling = 'merge' | 'preserve' | '' ;
@@ -350,13 +350,13 @@ export type QueryParamsHandling = 'merge' | 'preserve' | '';
350350 *
351351 * The type of `runGuardsAndResolvers`.
352352 *
353- * See { @link Routes} for more details.
353+ * See ` Routes` for more details.
354354 * @experimental
355355 */
356356export type RunGuardsAndResolvers = 'paramsChange' | 'paramsOrQueryParamsChange' | 'always' ;
357357
358358/**
359- * See { @link Routes} for more details.
359+ * See ` Routes` for more details.
360360 * @stable
361361 */
362362export interface Route {
0 commit comments