From 492b9d419e32faa7538cb26933bf3a6ddc8fa5f9 Mon Sep 17 00:00:00 2001 From: Kodai Nakamura Date: Wed, 15 Aug 2018 16:14:14 +0900 Subject: [PATCH] Update type name --- types/reach__router/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/reach__router/index.d.ts b/types/reach__router/index.d.ts index 8f698f6e08..e61e9e15ad 100644 --- a/types/reach__router/index.d.ts +++ b/types/reach__router/index.d.ts @@ -5,8 +5,8 @@ // TypeScript Version: 2.8 import * as React from "react"; -import { Location } from "history"; -export type WindowLocation = Window["location"] & Location; +import { Location as HLocation } from "history"; +export type WindowLocation = Window["location"] & HLocation; export interface History { readonly location: string;