From 75a1903219d48cdeb0b40a129d573e730b1f9141 Mon Sep 17 00:00:00 2001 From: Atul Varma Date: Mon, 4 Mar 2019 16:44:09 -0500 Subject: [PATCH] Remove the RouteTypes namespace. --- frontend/lib/routes.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/frontend/lib/routes.ts b/frontend/lib/routes.ts index 05dbaade5..bf2555438 100644 --- a/frontend/lib/routes.ts +++ b/frontend/lib/routes.ts @@ -87,18 +87,6 @@ function createOnboardingRouteInfo(prefix: string) { }; } -/** - * This namespace parallels our Routes object, providing useful types - * related to specific routes. - */ -export namespace RouteTypes { - export namespace onboarding { - export namespace forIntent { - export type RouteProps = RouteComponentProps<{ intent: string }>; - } - } -} - /** * This is an ad-hoc structure that defines URL routes for our app. */