From 2881a44de5be88a305ef7d5aaad612df14ea36f9 Mon Sep 17 00:00:00 2001 From: yaoyuchi Date: Wed, 23 Feb 2022 19:16:44 +0800 Subject: [PATCH] textinput api sdk Signed-off-by: yaoyuchi --- api/@internal/component/ets/text_input.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/@internal/component/ets/text_input.d.ts b/api/@internal/component/ets/text_input.d.ts index 3e3a01c970..8ad8b036d2 100644 --- a/api/@internal/component/ets/text_input.d.ts +++ b/api/@internal/component/ets/text_input.d.ts @@ -229,19 +229,19 @@ declare class TextInputAttribute extends CommonMethod { /** * Called when using the Clipboard menu - * @since 7 + * @since 8 */ onCopy(callback: (value: string) => void): TextInputAttribute; /** * Called when using the Clipboard menu - * @since 7 + * @since 8 */ onCut(callback: (value: string) => void): TextInputAttribute; /** * Called when using the Clipboard menu - * @since 7 + * @since 8 */ onPaste(callback: (value: string) => void): TextInputAttribute; } -- Gitee