File tree Expand file tree Collapse file tree
goldens/public-api/router Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -198,6 +198,11 @@ export class ChildrenOutletContexts {
198198// @public
199199export type ComponentInputBindingFeature = RouterFeature <RouterFeatureKind .ComponentInputBindingFeature >;
200200
201+ // @public
202+ export interface ComponentInputBindingOptions {
203+ queryParams? : boolean ;
204+ }
205+
201206// @public
202207export function convertToParamMap(params : Params ): ParamMap ;
203208
Original file line number Diff line number Diff line change @@ -113,6 +113,7 @@ export {
113113 InMemoryScrollingOptions ,
114114 ROUTER_CONFIGURATION ,
115115 RouterConfigOptions ,
116+ ComponentInputBindingOptions ,
116117} from './router_config' ;
117118export { ROUTES } from './router_config_loader' ;
118119export { ROUTER_INITIALIZER , RouterModule } from './router_module' ;
Original file line number Diff line number Diff line change @@ -200,6 +200,7 @@ export interface InMemoryScrollingOptions {
200200 * @publicApi
201201 * @see withComponentInputBinding
202202 * @see RouterModule#forRoot
203+ * @see [Disable query parameter binding](guide/routing/common-router-tasks#disable-query-parameter-binding)
203204 */
204205export interface ComponentInputBindingOptions {
205206 /**
You can’t perform that action at this time.
0 commit comments