openharmony 鸿蒙 js-apidiff-PerformanceAnalysisKit

2026-08-25 浏览 (1)

Change TypeOld VersionNew Versiond.ts File
New APINAClass name: global;
API declaration: declare namespace bytrace
Differences: declare namespace bytrace
api/@ohos.bytrace.d.ts
New APINAClass name: bytrace;
API declaration: function startTrace(name: string, taskId: number, expectedTime?: number): void;
Differences: function startTrace(name: string, taskId: number, expectedTime?: number): void;
api/@ohos.bytrace.d.ts
New APINAClass name: bytrace;
API declaration: function finishTrace(name: string, taskId: number): void;
Differences: function finishTrace(name: string, taskId: number): void;
api/@ohos.bytrace.d.ts
New APINAClass name: bytrace;
API declaration: function traceByValue(name: string, count: number): void;
Differences: function traceByValue(name: string, count: number): void;
api/@ohos.bytrace.d.ts
New APINAClass name: global;
API declaration: declare namespace FaultLogger
Differences: declare namespace FaultLogger
api/@ohos.faultLogger.d.ts
New APINAClass name: FaultLogger;
API declaration: enum FaultType
Differences: enum FaultType
api/@ohos.faultLogger.d.ts
New APINAClass name: FaultType;
API declaration: NO_SPECIFIC = 0
Differences: NO_SPECIFIC = 0
api/@ohos.faultLogger.d.ts
New APINAClass name: FaultType;
API declaration: CPP_CRASH = 2
Differences: CPP_CRASH = 2
api/@ohos.faultLogger.d.ts
New APINAClass name: FaultType;
API declaration: JS_CRASH = 3
Differences: JS_CRASH = 3
api/@ohos.faultLogger.d.ts
New APINAClass name: FaultType;
API declaration: APP_FREEZE = 4
Differences: APP_FREEZE = 4
api/@ohos.faultLogger.d.ts
New APINAClass name: FaultLogger;
API declaration: function querySelfFaultLog(faultType: FaultType, callback: AsyncCallback<Array<FaultLogInfo>>): void;
Differences: function querySelfFaultLog(faultType: FaultType, callback: AsyncCallback<Array<FaultLogInfo>>): void;
api/@ohos.faultLogger.d.ts
New APINAClass name: FaultLogger;
API declaration: function querySelfFaultLog(faultType: FaultType): Promise<Array<FaultLogInfo>>;
Differences: function querySelfFaultLog(faultType: FaultType): Promise<Array<FaultLogInfo>>;
api/@ohos.faultLogger.d.ts
New APINAClass name: FaultLogger;
API declaration: function query(faultType: FaultType, callback: AsyncCallback<Array<FaultLogInfo>>): void;
Differences: function query(faultType: FaultType, callback: AsyncCallback<Array<FaultLogInfo>>): void;
api/@ohos.faultLogger.d.ts
New APINAClass name: FaultLogger;
API declaration: function query(faultType: FaultType): Promise<Array<FaultLogInfo>>;
Differences: function query(faultType: FaultType): Promise<Array<FaultLogInfo>>;
api/@ohos.faultLogger.d.ts
New APINAClass name: FaultLogger;
API declaration: interface FaultLogInfo
Differences: interface FaultLogInfo
api/@ohos.faultLogger.d.ts
New APINAClass name: FaultLogInfo;
API declaration: pid: number;
Differences: pid: number;
api/@ohos.faultLogger.d.ts
New APINAClass name: FaultLogInfo;
API declaration: uid: number;
Differences: uid: number;
api/@ohos.faultLogger.d.ts
New APINAClass name: FaultLogInfo;
API declaration: type: FaultType;
Differences: type: FaultType;
api/@ohos.faultLogger.d.ts
New APINAClass name: FaultLogInfo;
API declaration: timestamp: number;
Differences: timestamp: number;
api/@ohos.faultLogger.d.ts
New APINAClass name: FaultLogInfo;
API declaration: reason: string;
Differences: reason: string;
api/@ohos.faultLogger.d.ts
New APINAClass name: FaultLogInfo;
API declaration: module: string;
Differences: module: string;
api/@ohos.faultLogger.d.ts
New APINAClass name: FaultLogInfo;
API declaration: summary: string;
Differences: summary: string;
api/@ohos.faultLogger.d.ts
New APINAClass name: FaultLogInfo;
API declaration: fullLog: string;
Differences: fullLog: string;
api/@ohos.faultLogger.d.ts
New APINAClass name: global;
API declaration: declare namespace hiAppEvent
Differences: declare namespace hiAppEvent
api/@ohos.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: enum EventType
Differences: enum EventType
api/@ohos.hiAppEvent.d.ts
New APINAClass name: EventType;
API declaration: FAULT = 1
Differences: FAULT = 1
api/@ohos.hiAppEvent.d.ts
New APINAClass name: EventType;
API declaration: STATISTIC = 2
Differences: STATISTIC = 2
api/@ohos.hiAppEvent.d.ts
New APINAClass name: EventType;
API declaration: SECURITY = 3
Differences: SECURITY = 3
api/@ohos.hiAppEvent.d.ts
New APINAClass name: EventType;
API declaration: BEHAVIOR = 4
Differences: BEHAVIOR = 4
api/@ohos.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: namespace Event
Differences: namespace Event
api/@ohos.hiAppEvent.d.ts
New APINAClass name: Event;
API declaration: const USER_LOGIN: string;
Differences: const USER_LOGIN: string;
api/@ohos.hiAppEvent.d.ts
New APINAClass name: Event;
API declaration: const USER_LOGOUT: string;
Differences: const USER_LOGOUT: string;
api/@ohos.hiAppEvent.d.ts
New APINAClass name: Event;
API declaration: const DISTRIBUTED_SERVICE_START: string;
Differences: const DISTRIBUTED_SERVICE_START: string;
api/@ohos.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: namespace Param
Differences: namespace Param
api/@ohos.hiAppEvent.d.ts
New APINAClass name: Param;
API declaration: const USER_ID: string;
Differences: const USER_ID: string;
api/@ohos.hiAppEvent.d.ts
New APINAClass name: Param;
API declaration: const DISTRIBUTED_SERVICE_NAME: string;
Differences: const DISTRIBUTED_SERVICE_NAME: string;
api/@ohos.hiAppEvent.d.ts
New APINAClass name: Param;
API declaration: const DISTRIBUTED_SERVICE_INSTANCE_ID: string;
Differences: const DISTRIBUTED_SERVICE_INSTANCE_ID: string;
api/@ohos.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: function write(eventName: string, eventType: EventType, keyValues: object): Promise<void>;
Differences: function write(eventName: string, eventType: EventType, keyValues: object): Promise<void>;
api/@ohos.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: function write(eventName: string, eventType: EventType, keyValues: object, callback: AsyncCallback<void>): void;
Differences: function write(eventName: string, eventType: EventType, keyValues: object, callback: AsyncCallback<void>): void;
api/@ohos.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: function configure(config: ConfigOption): boolean;
Differences: function configure(config: ConfigOption): boolean;
api/@ohos.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: interface ConfigOption
Differences: interface ConfigOption
api/@ohos.hiAppEvent.d.ts
New APINAClass name: ConfigOption;
API declaration: disable?: boolean;
Differences: disable?: boolean;
api/@ohos.hiAppEvent.d.ts
New APINAClass name: ConfigOption;
API declaration: maxStorage?: string;
Differences: maxStorage?: string;
api/@ohos.hiAppEvent.d.ts
New APINAClass name: global;
API declaration: declare namespace hichecker
Differences: declare namespace hichecker
api/@ohos.hichecker.d.ts
New APINAClass name: hichecker;
API declaration: const RULE_CAUTION_PRINT_LOG: 9223372036854775808n;
Differences: const RULE_CAUTION_PRINT_LOG: 9223372036854775808n;
api/@ohos.hichecker.d.ts
New APINAClass name: hichecker;
API declaration: const RULE_CAUTION_TRIGGER_CRASH: 4611686018427387904n;
Differences: const RULE_CAUTION_TRIGGER_CRASH: 4611686018427387904n;
api/@ohos.hichecker.d.ts
New APINAClass name: hichecker;
API declaration: const RULE_THREAD_CHECK_SLOW_PROCESS: 1n;
Differences: const RULE_THREAD_CHECK_SLOW_PROCESS: 1n;
api/@ohos.hichecker.d.ts
New APINAClass name: hichecker;
API declaration: const RULE_CHECK_ABILITY_CONNECTION_LEAK: 8589934592n;
Differences: const RULE_CHECK_ABILITY_CONNECTION_LEAK: 8589934592n;
api/@ohos.hichecker.d.ts
New APINAClass name: hichecker;
API declaration: const RULE_CHECK_ARKUI_PERFORMANCE: 17179869184n;
Differences: const RULE_CHECK_ARKUI_PERFORMANCE: 17179869184n;
api/@ohos.hichecker.d.ts
New APINAClass name: hichecker;
API declaration: function addRule(rule: bigint): void;
Differences: function addRule(rule: bigint): void;
api/@ohos.hichecker.d.ts
New APINAClass name: hichecker;
API declaration: function removeRule(rule: bigint): void;
Differences: function removeRule(rule: bigint): void;
api/@ohos.hichecker.d.ts
New APINAClass name: hichecker;
API declaration: function getRule(): bigint;
Differences: function getRule(): bigint;
api/@ohos.hichecker.d.ts
New APINAClass name: hichecker;
API declaration: function contains(rule: bigint): boolean;
Differences: function contains(rule: bigint): boolean;
api/@ohos.hichecker.d.ts
New APINAClass name: hichecker;
API declaration: function addCheckRule(rule: bigint): void;
Differences: function addCheckRule(rule: bigint): void;
api/@ohos.hichecker.d.ts
New APINAClass name: hichecker;
API declaration: function removeCheckRule(rule: bigint): void;
Differences: function removeCheckRule(rule: bigint): void;
api/@ohos.hichecker.d.ts
New APINAClass name: hichecker;
API declaration: function containsCheckRule(rule: bigint): boolean;
Differences: function containsCheckRule(rule: bigint): boolean;
api/@ohos.hichecker.d.ts
New APINAClass name: global;
API declaration: declare namespace hidebug
Differences: declare namespace hidebug
api/@ohos.hidebug.d.ts
New APINAClass name: hidebug;
API declaration: function getNativeHeapSize(): bigint;
Differences: function getNativeHeapSize(): bigint;
api/@ohos.hidebug.d.ts
New APINAClass name: hidebug;
API declaration: function getNativeHeapAllocatedSize(): bigint;
Differences: function getNativeHeapAllocatedSize(): bigint;
api/@ohos.hidebug.d.ts
New APINAClass name: hidebug;
API declaration: function getNativeHeapFreeSize(): bigint;
Differences: function getNativeHeapFreeSize(): bigint;
api/@ohos.hidebug.d.ts
New APINAClass name: hidebug;
API declaration: function getVss(): bigint;
Differences: function getVss(): bigint;
api/@ohos.hidebug.d.ts
New APINAClass name: hidebug;
API declaration: function getPss(): bigint;
Differences: function getPss(): bigint;
api/@ohos.hidebug.d.ts
New APINAClass name: hidebug;
API declaration: function getSharedDirty(): bigint;
Differences: function getSharedDirty(): bigint;
api/@ohos.hidebug.d.ts
New APINAClass name: hidebug;
API declaration: function getPrivateDirty(): bigint;
Differences: function getPrivateDirty(): bigint;
api/@ohos.hidebug.d.ts
New APINAClass name: hidebug;
API declaration: function getCpuUsage(): number;
Differences: function getCpuUsage(): number;
api/@ohos.hidebug.d.ts
New APINAClass name: hidebug;
API declaration: function startProfiling(filename: string): void;
Differences: function startProfiling(filename: string): void;
api/@ohos.hidebug.d.ts
New APINAClass name: hidebug;
API declaration: function stopProfiling(): void;
Differences: function stopProfiling(): void;
api/@ohos.hidebug.d.ts
New APINAClass name: hidebug;
API declaration: function dumpHeapData(filename: string): void;
Differences: function dumpHeapData(filename: string): void;
api/@ohos.hidebug.d.ts
New APINAClass name: hidebug;
API declaration: function startJsCpuProfiling(filename: string): void;
Differences: function startJsCpuProfiling(filename: string): void;
api/@ohos.hidebug.d.ts
New APINAClass name: hidebug;
API declaration: function stopJsCpuProfiling(): void;
Differences: function stopJsCpuProfiling(): void;
api/@ohos.hidebug.d.ts
New APINAClass name: hidebug;
API declaration: function dumpJsHeapData(filename: string): void;
Differences: function dumpJsHeapData(filename: string): void;
api/@ohos.hidebug.d.ts
New APINAClass name: hidebug;
API declaration: function getServiceDump(serviceid: number, fd: number, args: Array<string>): void;
Differences: function getServiceDump(serviceid: number, fd: number, args: Array<string>): void;
api/@ohos.hidebug.d.ts
New APINAClass name: global;
API declaration: declare namespace hilog
Differences: declare namespace hilog
api/@ohos.hilog.d.ts
New APINAClass name: hilog;
API declaration: function debug(domain: number, tag: string, format: string, ...args: any[]): void;
Differences: function debug(domain: number, tag: string, format: string, ...args: any[]): void;
api/@ohos.hilog.d.ts
New APINAClass name: hilog;
API declaration: function info(domain: number, tag: string, format: string, ...args: any[]): void;
Differences: function info(domain: number, tag: string, format: string, ...args: any[]): void;
api/@ohos.hilog.d.ts
New APINAClass name: hilog;
API declaration: function warn(domain: number, tag: string, format: string, ...args: any[]): void;
Differences: function warn(domain: number, tag: string, format: string, ...args: any[]): void;
api/@ohos.hilog.d.ts
New APINAClass name: hilog;
API declaration: function error(domain: number, tag: string, format: string, ...args: any[]): void;
Differences: function error(domain: number, tag: string, format: string, ...args: any[]): void;
api/@ohos.hilog.d.ts
New APINAClass name: hilog;
API declaration: function fatal(domain: number, tag: string, format: string, ...args: any[]): void;
Differences: function fatal(domain: number, tag: string, format: string, ...args: any[]): void;
api/@ohos.hilog.d.ts
New APINAClass name: hilog;
API declaration: function isLoggable(domain: number, tag: string, level: LogLevel): boolean;
Differences: function isLoggable(domain: number, tag: string, level: LogLevel): boolean;
api/@ohos.hilog.d.ts
New APINAClass name: hilog;
API declaration: enum LogLevel
Differences: enum LogLevel
api/@ohos.hilog.d.ts
New APINAClass name: LogLevel;
API declaration: DEBUG = 3
Differences: DEBUG = 3
api/@ohos.hilog.d.ts
New APINAClass name: LogLevel;
API declaration: INFO = 4
Differences: INFO = 4
api/@ohos.hilog.d.ts
New APINAClass name: LogLevel;
API declaration: WARN = 5
Differences: WARN = 5
api/@ohos.hilog.d.ts
New APINAClass name: LogLevel;
API declaration: ERROR = 6
Differences: ERROR = 6
api/@ohos.hilog.d.ts
New APINAClass name: LogLevel;
API declaration: FATAL = 7
Differences: FATAL = 7
api/@ohos.hilog.d.ts
New APINAClass name: global;
API declaration: declare namespace hiTraceChain
Differences: declare namespace hiTraceChain
api/@ohos.hiTraceChain.d.ts
New APINAClass name: hiTraceChain;
API declaration: enum HiTraceFlag
Differences: enum HiTraceFlag
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceFlag;
API declaration: DEFAULT = 0
Differences: DEFAULT = 0
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceFlag;
API declaration: INCLUDE_ASYNC = 1
Differences: INCLUDE_ASYNC = 1
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceFlag;
API declaration: DONOT_CREATE_SPAN = 1 << 1
Differences: DONOT_CREATE_SPAN = 1 << 1
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceFlag;
API declaration: TP_INFO = 1 << 2
Differences: TP_INFO = 1 << 2
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceFlag;
API declaration: NO_BE_INFO = 1 << 3
Differences: NO_BE_INFO = 1 << 3
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceFlag;
API declaration: DISABLE_LOG = 1 << 4
Differences: DISABLE_LOG = 1 << 4
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceFlag;
API declaration: FAILURE_TRIGGER = 1 << 5
Differences: FAILURE_TRIGGER = 1 << 5
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceFlag;
API declaration: D2D_TP_INFO = 1 << 6
Differences: D2D_TP_INFO = 1 << 6
api/@ohos.hiTraceChain.d.ts
New APINAClass name: hiTraceChain;
API declaration: enum HiTraceTracepointType
Differences: enum HiTraceTracepointType
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceTracepointType;
API declaration: CS = 0
Differences: CS = 0
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceTracepointType;
API declaration: CR = 1
Differences: CR = 1
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceTracepointType;
API declaration: SS = 2
Differences: SS = 2
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceTracepointType;
API declaration: SR = 3
Differences: SR = 3
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceTracepointType;
API declaration: GENERAL = 4
Differences: GENERAL = 4
api/@ohos.hiTraceChain.d.ts
New APINAClass name: hiTraceChain;
API declaration: enum HiTraceCommunicationMode
Differences: enum HiTraceCommunicationMode
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceCommunicationMode;
API declaration: DEFAULT = 0
Differences: DEFAULT = 0
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceCommunicationMode;
API declaration: THREAD = 1
Differences: THREAD = 1
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceCommunicationMode;
API declaration: PROCESS = 2
Differences: PROCESS = 2
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceCommunicationMode;
API declaration: DEVICE = 3
Differences: DEVICE = 3
api/@ohos.hiTraceChain.d.ts
New APINAClass name: hiTraceChain;
API declaration: interface HiTraceId
Differences: interface HiTraceId
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceId;
API declaration: chainId: bigint;
Differences: chainId: bigint;
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceId;
API declaration: spanId?: number;
Differences: spanId?: number;
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceId;
API declaration: parentSpanId?: number;
Differences: parentSpanId?: number;
api/@ohos.hiTraceChain.d.ts
New APINAClass name: HiTraceId;
API declaration: flags?: number;
Differences: flags?: number;
api/@ohos.hiTraceChain.d.ts
New APINAClass name: hiTraceChain;
API declaration: function begin(name: string, flags?: number): HiTraceId;
Differences: function begin(name: string, flags?: number): HiTraceId;
api/@ohos.hiTraceChain.d.ts
New APINAClass name: hiTraceChain;
API declaration: function end(id: HiTraceId): void;
Differences: function end(id: HiTraceId): void;
api/@ohos.hiTraceChain.d.ts
New APINAClass name: hiTraceChain;
API declaration: function getId(): HiTraceId;
Differences: function getId(): HiTraceId;
api/@ohos.hiTraceChain.d.ts
New APINAClass name: hiTraceChain;
API declaration: function setId(id: HiTraceId): void;
Differences: function setId(id: HiTraceId): void;
api/@ohos.hiTraceChain.d.ts
New APINAClass name: hiTraceChain;
API declaration: function clearId(): void;
Differences: function clearId(): void;
api/@ohos.hiTraceChain.d.ts
New APINAClass name: hiTraceChain;
API declaration: function createSpan(): HiTraceId;
Differences: function createSpan(): HiTraceId;
api/@ohos.hiTraceChain.d.ts
New APINAClass name: hiTraceChain;
API declaration: function tracepoint(mode: HiTraceCommunicationMode, type: HiTraceTracepointType, id: HiTraceId, msg?: string): void;
Differences: function tracepoint(mode: HiTraceCommunicationMode, type: HiTraceTracepointType, id: HiTraceId, msg?: string): void;
api/@ohos.hiTraceChain.d.ts
New APINAClass name: hiTraceChain;
API declaration: function isValid(id: HiTraceId): boolean;
Differences: function isValid(id: HiTraceId): boolean;
api/@ohos.hiTraceChain.d.ts
New APINAClass name: hiTraceChain;
API declaration: function isFlagEnabled(id: HiTraceId, flag: HiTraceFlag): boolean;
Differences: function isFlagEnabled(id: HiTraceId, flag: HiTraceFlag): boolean;
api/@ohos.hiTraceChain.d.ts
New APINAClass name: hiTraceChain;
API declaration: function enableFlag(id: HiTraceId, flag: HiTraceFlag): void;
Differences: function enableFlag(id: HiTraceId, flag: HiTraceFlag): void;
api/@ohos.hiTraceChain.d.ts
New APINAClass name: global;
API declaration: declare namespace hiTraceMeter
Differences: declare namespace hiTraceMeter
api/@ohos.hiTraceMeter.d.ts
New APINAClass name: hiTraceMeter;
API declaration: function startTrace(name: string, taskId: number): void;
Differences: function startTrace(name: string, taskId: number): void;
api/@ohos.hiTraceMeter.d.ts
New APINAClass name: hiTraceMeter;
API declaration: function finishTrace(name: string, taskId: number): void;
Differences: function finishTrace(name: string, taskId: number): void;
api/@ohos.hiTraceMeter.d.ts
New APINAClass name: hiTraceMeter;
API declaration: function traceByValue(name: string, count: number): void;
Differences: function traceByValue(name: string, count: number): void;
api/@ohos.hiTraceMeter.d.ts
New APINAClass name: global;
API declaration: declare namespace hiAppEvent
Differences: declare namespace hiAppEvent
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: enum EventType
Differences: enum EventType
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: EventType;
API declaration: FAULT = 1
Differences: FAULT = 1
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: EventType;
API declaration: STATISTIC = 2
Differences: STATISTIC = 2
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: EventType;
API declaration: SECURITY = 3
Differences: SECURITY = 3
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: EventType;
API declaration: BEHAVIOR = 4
Differences: BEHAVIOR = 4
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: namespace domain
Differences: namespace domain
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: domain;
API declaration: const OS: string;
Differences: const OS: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: namespace event
Differences: namespace event
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: event;
API declaration: const USER_LOGIN: string;
Differences: const USER_LOGIN: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: event;
API declaration: const USER_LOGOUT: string;
Differences: const USER_LOGOUT: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: event;
API declaration: const DISTRIBUTED_SERVICE_START: string;
Differences: const DISTRIBUTED_SERVICE_START: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: event;
API declaration: const APP_CRASH: string;
Differences: const APP_CRASH: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: event;
API declaration: const APP_FREEZE: string;
Differences: const APP_FREEZE: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: namespace param
Differences: namespace param
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: param;
API declaration: const USER_ID: string;
Differences: const USER_ID: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: param;
API declaration: const DISTRIBUTED_SERVICE_NAME: string;
Differences: const DISTRIBUTED_SERVICE_NAME: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: param;
API declaration: const DISTRIBUTED_SERVICE_INSTANCE_ID: string;
Differences: const DISTRIBUTED_SERVICE_INSTANCE_ID: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: function configure(config: ConfigOption): void;
Differences: function configure(config: ConfigOption): void;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: interface ConfigOption
Differences: interface ConfigOption
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: ConfigOption;
API declaration: disable?: boolean;
Differences: disable?: boolean;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: ConfigOption;
API declaration: maxStorage?: string;
Differences: maxStorage?: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: interface AppEventInfo
Differences: interface AppEventInfo
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: AppEventInfo;
API declaration: domain: string;
Differences: domain: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: AppEventInfo;
API declaration: name: string;
Differences: name: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: AppEventInfo;
API declaration: eventType: EventType;
Differences: eventType: EventType;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: AppEventInfo;
API declaration: params: object;
Differences: params: object;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: function write(info: AppEventInfo): Promise<void>;
Differences: function write(info: AppEventInfo): Promise<void>;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: function write(info: AppEventInfo, callback: AsyncCallback<void>): void;
Differences: function write(info: AppEventInfo, callback: AsyncCallback<void>): void;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: interface AppEventPackage
Differences: interface AppEventPackage
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: AppEventPackage;
API declaration: packageId: number;
Differences: packageId: number;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: AppEventPackage;
API declaration: row: number;
Differences: row: number;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: AppEventPackage;
API declaration: size: number;
Differences: size: number;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: AppEventPackage;
API declaration: data: string[];
Differences: data: string[];
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: class AppEventPackageHolder
Differences: class AppEventPackageHolder
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: AppEventPackageHolder;
API declaration: setSize(size: number): void;
Differences: setSize(size: number): void;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: AppEventPackageHolder;
API declaration: takeNext(): AppEventPackage;
Differences: takeNext(): AppEventPackage;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: interface TriggerCondition
Differences: interface TriggerCondition
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: TriggerCondition;
API declaration: row?: number;
Differences: row?: number;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: TriggerCondition;
API declaration: size?: number;
Differences: size?: number;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: TriggerCondition;
API declaration: timeOut?: number;
Differences: timeOut?: number;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: interface AppEventFilter
Differences: interface AppEventFilter
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: AppEventFilter;
API declaration: domain: string;
Differences: domain: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: AppEventFilter;
API declaration: eventTypes?: EventType[];
Differences: eventTypes?: EventType[];
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: AppEventFilter;
API declaration: names?: string[];
Differences: names?: string[];
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: interface AppEventGroup
Differences: interface AppEventGroup
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: AppEventGroup;
API declaration: name: string;
Differences: name: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: AppEventGroup;
API declaration: appEventInfos: Array<AppEventInfo>;
Differences: appEventInfos: Array<AppEventInfo>;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: interface Watcher
Differences: interface Watcher
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: Watcher;
API declaration: name: string;
Differences: name: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: Watcher;
API declaration: triggerCondition?: TriggerCondition;
Differences: triggerCondition?: TriggerCondition;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: Watcher;
API declaration: appEventFilters?: AppEventFilter[];
Differences: appEventFilters?: AppEventFilter[];
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: Watcher;
API declaration: onTrigger?: (curRow: number, curSize: number, holder: AppEventPackageHolder) => void;
Differences: onTrigger?: (curRow: number, curSize: number, holder: AppEventPackageHolder) => void;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: Watcher;
API declaration: onReceive?: (domain: string, appEventGroups: Array<AppEventGroup>) => void;
Differences: onReceive?: (domain: string, appEventGroups: Array<AppEventGroup>) => void;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: function addWatcher(watcher: Watcher): AppEventPackageHolder;
Differences: function addWatcher(watcher: Watcher): AppEventPackageHolder;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: function removeWatcher(watcher: Watcher): void;
Differences: function removeWatcher(watcher: Watcher): void;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: function clearData(): void;
Differences: function clearData(): void;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: function setUserId(name: string, value: string): void;
Differences: function setUserId(name: string, value: string): void;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: function getUserId(name: string): string;
Differences: function getUserId(name: string): string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: function setUserProperty(name: string, value: string): void;
Differences: function setUserProperty(name: string, value: string): void;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: function getUserProperty(name: string): string;
Differences: function getUserProperty(name: string): string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: interface AppEventReportConfig
Differences: interface AppEventReportConfig
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: AppEventReportConfig;
API declaration: domain?: string;
Differences: domain?: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: AppEventReportConfig;
API declaration: name?: string;
Differences: name?: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: AppEventReportConfig;
API declaration: isRealTime?: boolean;
Differences: isRealTime?: boolean;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: interface Processor
Differences: interface Processor
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: Processor;
API declaration: name: string;
Differences: name: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: Processor;
API declaration: debugMode?: boolean;
Differences: debugMode?: boolean;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: Processor;
API declaration: routeInfo?: string;
Differences: routeInfo?: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: Processor;
API declaration: appId?: string;
Differences: appId?: string;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: Processor;
API declaration: onStartReport?: boolean;
Differences: onStartReport?: boolean;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: Processor;
API declaration: onBackgroundReport?: boolean;
Differences: onBackgroundReport?: boolean;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: Processor;
API declaration: periodReport?: number;
Differences: periodReport?: number;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: Processor;
API declaration: batchReport?: number;
Differences: batchReport?: number;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: Processor;
API declaration: userIds?: string[];
Differences: userIds?: string[];
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: Processor;
API declaration: userProperties?: string[];
Differences: userProperties?: string[];
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: Processor;
API declaration: eventConfigs?: AppEventReportConfig[];
Differences: eventConfigs?: AppEventReportConfig[];
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: function addProcessor(processor: Processor): number;
Differences: function addProcessor(processor: Processor): number;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New APINAClass name: hiAppEvent;
API declaration: function removeProcessor(id: number): void;
Differences: function removeProcessor(id: number): void;
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New KitClass name: global;
API declaration:
Differences: NA
Class name: global;
API declaration: api@ohos.bytrace.d.ts
Differences: PerformanceAnalysisKit
api/@ohos.bytrace.d.ts
New KitClass name: global;
API declaration:
Differences: NA
Class name: global;
API declaration: api@ohos.faultLogger.d.ts
Differences: PerformanceAnalysisKit
api/@ohos.faultLogger.d.ts
New KitClass name: global;
API declaration:
Differences: NA
Class name: global;
API declaration: api@ohos.hiAppEvent.d.ts
Differences: PerformanceAnalysisKit
api/@ohos.hiAppEvent.d.ts
New KitClass name: global;
API declaration:
Differences: NA
Class name: global;
API declaration: api@ohos.hichecker.d.ts
Differences: PerformanceAnalysisKit
api/@ohos.hichecker.d.ts
New KitClass name: global;
API declaration:
Differences: NA
Class name: global;
API declaration: api@ohos.hidebug.d.ts
Differences: PerformanceAnalysisKit
api/@ohos.hidebug.d.ts
New KitClass name: global;
API declaration:
Differences: NA
Class name: global;
API declaration: api@ohos.hilog.d.ts
Differences: PerformanceAnalysisKit
api/@ohos.hilog.d.ts
New KitClass name: global;
API declaration:
Differences: NA
Class name: global;
API declaration: api@ohos.hiTraceChain.d.ts
Differences: PerformanceAnalysisKit
api/@ohos.hiTraceChain.d.ts
New KitClass name: global;
API declaration:
Differences: NA
Class name: global;
API declaration: api@ohos.hiTraceMeter.d.ts
Differences: PerformanceAnalysisKit
api/@ohos.hiTraceMeter.d.ts
New KitClass name: global;
API declaration:
Differences: NA
Class name: global;
API declaration: api@ohos.hiviewdfx.hiAppEvent.d.ts
Differences: PerformanceAnalysisKit
api/@ohos.hiviewdfx.hiAppEvent.d.ts
New KitClass name: global;
API declaration:
Differences: NA
Class name: global;
API declaration: kits@kit.PerformanceAnalysisKit.d.ts
Differences: PerformanceAnalysisKit
kits/@kit.PerformanceAnalysisKit.d.ts

你可能感兴趣的鸿蒙文章

openharmony 鸿蒙 js-apidiff-ArkGraphics2D

openharmony 鸿蒙 js-apidiff-MediaKit

openharmony 鸿蒙 js-apidiff-InputKit

openharmony 鸿蒙 js-apidiff-BasicServicesKit

openharmony 鸿蒙 js-apidiff-ConnectivityKit

openharmony 鸿蒙 js-apidiff-ArkWeb

openharmony 鸿蒙 js-apidiff-MultimodalAwarenessKit

openharmony 鸿蒙 js-apidiff-ArkData

openharmony 鸿蒙 js-apidiff-NA

openharmony 鸿蒙 js-apidiff-IPCKit

  • 所属分类: 后端技术
  • 本文标签: 软件 鸿蒙
  • 版权声明: 本文链接 https://seaxiang.com/blog/oG4rT3yo