From 255e6ced52420ff47d70c5f84aa451dd8dc42b85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=A2=E9=9F=AC?= Date: Wed, 22 Jun 2022 02:54:49 +0000 Subject: [PATCH] Signed-off-by: lutao --- api/@ohos.hichecker.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/api/@ohos.hichecker.d.ts b/api/@ohos.hichecker.d.ts index 57f82fa0dc..678b3b6a36 100644 --- a/api/@ohos.hichecker.d.ts +++ b/api/@ohos.hichecker.d.ts @@ -28,28 +28,28 @@ declare namespace hichecker { * @since 8 * @syscap SystemCapability.HiviewDFX.HiChecker */ - const RULE_CAUTION_PRINT_LOG: bigint; + const RULE_CAUTION_PRINT_LOG: 9223372036854775808n; // 1 << 63 /** * The caution rule trigger crash. * @since 8 * @syscap SystemCapability.HiviewDFX.HiChecker */ - const RULE_CAUTION_TRIGGER_CRASH: bigint; + const RULE_CAUTION_TRIGGER_CRASH: 4611686018427387904n; // 1 << 62 /** * The thread rule check slow process. * @since 8 * @syscap SystemCapability.HiviewDFX.HiChecker */ - const RULE_THREAD_CHECK_SLOW_PROCESS: bigint; + const RULE_THREAD_CHECK_SLOW_PROCESS: 1n; /** * The process rule check ability connection leak. * @since 8 * @syscap SystemCapability.HiviewDFX.HiChecker */ - const RULE_CHECK_ABILITY_CONNECTION_LEAK: bigint; + const RULE_CHECK_ABILITY_CONNECTION_LEAK: 8589934592n; // 1 << 33 /** * add one or more rule. -- Gitee