From 78c081c01cf2fb647822eb8c3bd13d7047ab7eac Mon Sep 17 00:00:00 2001 From: "Jimmy.Chai" Date: Tue, 13 Jul 2021 12:52:06 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0jira=E4=BB=BB=E5=8A=A1=20refactor?= =?UTF-8?q?=EF=BC=9A=E8=A1=A5=E5=85=85props=E5=A3=B0=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/base/a/a.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/typescript/base/a/a.ts b/typescript/base/a/a.ts index 3d4dd9f0c..91e778dfd 100644 --- a/typescript/base/a/a.ts +++ b/typescript/base/a/a.ts @@ -2,4 +2,7 @@ import { Text } from "../single/text"; export declare class A extends Text { static xtype: string; + props: { + href: string; + } & Text['props']; }