From 24639562422070b55147f5e8cfbfc46fd8ea61e3 Mon Sep 17 00:00:00 2001 From: lirismankarina Date: Fri, 6 Jun 2025 23:39:25 +0300 Subject: [PATCH] Fix invalid code after primitive type refactor Signed-off-by: lirismankarina --- jsunit/src_static/module/types/common.ets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsunit/src_static/module/types/common.ets b/jsunit/src_static/module/types/common.ets index be7f7d4b..768182a3 100644 --- a/jsunit/src_static/module/types/common.ets +++ b/jsunit/src_static/module/types/common.ets @@ -6,4 +6,4 @@ export type ItfnType = (() => void) | ((done: () => void) => Promise) | ((done: () => void, param2: AnyType) => void) | ((done: () => void, param2: AnyType) => Promise); -export type NumberType = byte | short | int | long | float | double; +export type NumberType = double; -- Gitee