From e6a665e18c9e89530b30bd96f1e2a70c199f896a Mon Sep 17 00:00:00 2001 From: wangzhiyusss Date: Thu, 26 Jun 2025 10:39:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=97=A0=E7=94=A8type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: wangzhiyusss --- api/@ohos.base.d.ts | 49 +-------------------------------------------- 1 file changed, 1 insertion(+), 48 deletions(-) diff --git a/api/@ohos.base.d.ts b/api/@ohos.base.d.ts index d56214a167..05e1f03016 100644 --- a/api/@ohos.base.d.ts +++ b/api/@ohos.base.d.ts @@ -290,51 +290,4 @@ export interface BusinessError extends Error { * @since 12 */ data?: T; -} - -/** - * In ArkTS 1.1, using int is equivalent to using number - * - * @typedef { number } - * @syscap SystemCapability.Base - * @crossplatform - * @form - * @atomicservice - * @since 20 - */ -export type int = number; - -/** - * In ArkTS 1.1, using double is equivalent to using number - * - * @typedef { number } - * @syscap SystemCapability.Base - * @crossplatform - * @form - * @atomicservice - * @since 20 - */ -export type double = number; -/** - * In ArkTS 1.1, using float is equivalent to using number - * - * @typedef { number } - * @syscap SystemCapability.Base - * @crossplatform - * @form - * @atomicservice - * @since 20 - */ -export type float = number; - -/** - * In ArkTS 1.1, using long is equivalent to using number - * - * @typedef { number } - * @syscap SystemCapability.Base - * @crossplatform - * @form - * @atomicservice - * @since 20 - */ -export type long = number; +} \ No newline at end of file -- Gitee