From e499612ecbd3a97528a4d4f27214762427c829ca Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Mon, 14 Sep 2020 08:28:07 +0000 Subject: [PATCH] fix(core): update --- readme.md | 2 +- test/test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 3f9121b..8acbf58 100644 --- a/readme.md +++ b/readme.md @@ -69,7 +69,7 @@ tap.test('should define a testHandler', async () => { testTypedRouter.addTypedHandler(testTypedHandler); testServer.addRoute( '/testroute', - new smartexpress.HandlerTypedRouter(testTypedRouter as any) + new smartexpress.HandlerTypedRouter(testTypedRouter as any) // the "any" is testspecific, since smartexpress ships with its own version of typedrequest. ); }); diff --git a/test/test.ts b/test/test.ts index 6c4bcbd..29296c5 100644 --- a/test/test.ts +++ b/test/test.ts @@ -39,7 +39,7 @@ tap.test('should define a testHandler', async () => { testTypedRouter.addTypedHandler(testTypedHandler); testServer.addRoute( '/testroute', - new smartexpress.HandlerTypedRouter(testTypedRouter as any) + new smartexpress.HandlerTypedRouter(testTypedRouter as any) // the "any" is testspecific, since smartexpress ships with its own version of typedrequest. ); });