mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
368 B
TypeScript
15 lines
368 B
TypeScript
/// <reference path="angular-route.d.ts" />
|
|
|
|
/**
|
|
* @license HTTP Auth Interceptor Module for AngularJS
|
|
* (c) 2013 Jonathan Park @ Daptiv Solutions Inc
|
|
* License: MIT
|
|
*/
|
|
|
|
declare var $routeProvider: ng.route.IRouteProvider;
|
|
$routeProvider
|
|
.when('/projects/:projectId/dashboard',{
|
|
controller: ''
|
|
})
|
|
.otherwise({redirectTo: '/'});
|