From cf172aab99c3139a718aa8e65398a22c53dd7ead Mon Sep 17 00:00:00 2001 From: Sagar Vadodaria Date: Tue, 15 Dec 2015 14:39:20 +0530 Subject: [PATCH] added missing property As per AngularJs Documentation, (https://docs.angularjs.org/api/ngRoute/provider/$routeProvider) , $routeProvider has a property as well. caseInsensitiveMatch , which can be used to turn off the case sensitive match globally. --- angularjs/angular-route.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/angularjs/angular-route.d.ts b/angularjs/angular-route.d.ts index 5f426d51c..eafdf714c 100644 --- a/angularjs/angular-route.d.ts +++ b/angularjs/angular-route.d.ts @@ -128,6 +128,12 @@ declare module angular.route { } interface IRouteProvider extends IServiceProvider { + /** + * Match routes without being case sensitive + * + * This option defaults to false. If the option is set to true, then the particular route can be matched without being case sensitive + */ + caseInsensitiveMatch?: boolean; /** * Sets route definition that will be used on route change when no other route definition is matched. *