From 6650f94cc1d0648c1bc8ad4b789bb6e129b957eb Mon Sep 17 00:00:00 2001 From: Nils Minten Date: Tue, 23 Jan 2024 14:53:01 +0100 Subject: [PATCH] Actually change the correct import --- Resources/ts/router.test-d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/ts/router.test-d.ts b/Resources/ts/router.test-d.ts index 862f183..4b65185 100644 --- a/Resources/ts/router.test-d.ts +++ b/Resources/ts/router.test-d.ts @@ -1,6 +1,6 @@ import { expectType } from 'tsd'; import type { RoutesMap } from '../js/router'; -import { Route, Router, type Routing } from './router'; +import { type Route, Router, Routing } from './router'; import routes from './routes.json'; expectType(Router.getInstance());