From 04c0697e2d8fd0995d305dfeae12582e76715432 Mon Sep 17 00:00:00 2001 From: Kobi Date: Wed, 2 Jun 2021 16:04:36 +0800 Subject: [PATCH] =?UTF-8?q?KERNEL-7828=20=E8=A1=A5=E5=85=85=E4=B8=80?= =?UTF-8?q?=E4=B8=8B=E7=B1=BB=E5=9E=8B=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/base/single/text.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/typescript/base/single/text.ts b/typescript/base/single/text.ts index 4ec46e9a4..c59a857a3 100644 --- a/typescript/base/single/text.ts +++ b/typescript/base/single/text.ts @@ -3,6 +3,15 @@ import { Single } from "./single"; export declare class Text extends Single { static xtype: string; + props: { + text?: string; + textAlign?: "left" | "center" | "right", + whiteSpace?: "nowrap" | "normal", + lineHeight?: null | number; + py?: string; + highLight?: boolean; + } & Single['props']; + doRedMark(keyword: string): void; unRedMark(): void;