From dd66137133bae858b98892a5ddb3843c4562c81a Mon Sep 17 00:00:00 2001 From: liangyongrui Date: Mon, 10 Jun 2019 20:25:23 +0800 Subject: [PATCH] fix params matched type passed MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复类型参数传递的问题 --- src/models/connect.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/connect.d.ts b/src/models/connect.d.ts index 07b427a5..e6327ded 100644 --- a/src/models/connect.d.ts +++ b/src/models/connect.d.ts @@ -49,7 +49,7 @@ export interface Route extends MenuDataItem { * @type T: Params matched in dynamic routing */ export interface ConnectProps - extends Partial> { + extends Partial> { dispatch?: Dispatch; } -- GitLab