操作 旧版本 新版本 d.ts文件
新增API NA 类名:global;
API声明:declare namespace buffer
差异内容:declare namespace buffer
api/@ohos.buffer.d.ts
新增API NA 类名:buffer;
API声明:type BufferEncoding = 'ascii' | 'utf8' | 'utf-8' | 'utf16le' | 'ucs2' | 'ucs-2' | 'base64' | 'base64url' | 'latin1' | 'binary' | 'hex';
差异内容:type BufferEncoding = 'ascii' | 'utf8' | 'utf-8' | 'utf16le' | 'ucs2' | 'ucs-2' | 'base64' | 'base64url' | 'latin1' | 'binary' | 'hex';
api/@ohos.buffer.d.ts
新增API NA 类名:buffer;
API声明:interface TypedArray
差异内容:interface TypedArray
api/@ohos.buffer.d.ts
新增API NA 类名:buffer;
API声明:function alloc(size: number, fill?: string | Buffer | number, encoding?: BufferEncoding): Buffer;
差异内容:function alloc(size: number, fill?: string | Buffer | number, encoding?: BufferEncoding): Buffer;
api/@ohos.buffer.d.ts
新增API NA 类名:buffer;
API声明:function allocUninitializedFromPool(size: number): Buffer;
差异内容:function allocUninitializedFromPool(size: number): Buffer;
api/@ohos.buffer.d.ts
新增API NA 类名:buffer;
API声明:function allocUninitialized(size: number): Buffer;
差异内容:function allocUninitialized(size: number): Buffer;
api/@ohos.buffer.d.ts
新增API NA 类名:buffer;
API声明:function byteLength(string: string | Buffer | TypedArray | DataView | ArrayBuffer | SharedArrayBuffer, encoding?: BufferEncoding): number;
差异内容:function byteLength(string: string | Buffer | TypedArray | DataView | ArrayBuffer | SharedArrayBuffer, encoding?: BufferEncoding): number;
api/@ohos.buffer.d.ts
新增API NA 类名:buffer;
API声明:function concat(list: Buffer[] | Uint8Array[], totalLength?: number): Buffer;
差异内容:function concat(list: Buffer[] | Uint8Array[], totalLength?: number): Buffer;
api/@ohos.buffer.d.ts
新增API NA 类名:buffer;
API声明:function from(array: number[]): Buffer;
差异内容:function from(array: number[]): Buffer;
api/@ohos.buffer.d.ts
新增API NA 类名:buffer;
API声明:function from(arrayBuffer: ArrayBuffer | SharedArrayBuffer, byteOffset?: number, length?: number): Buffer;
差异内容:function from(arrayBuffer: ArrayBuffer | SharedArrayBuffer, byteOffset?: number, length?: number): Buffer;
api/@ohos.buffer.d.ts
新增API NA 类名:buffer;
API声明:function from(buffer: Buffer | Uint8Array): Buffer;
差异内容:function from(buffer: Buffer | Uint8Array): Buffer;
api/@ohos.buffer.d.ts
新增API NA 类名:buffer;
API声明:function from(object: Object, offsetOrEncoding: number | string, length: number): Buffer;
差异内容:function from(object: Object, offsetOrEncoding: number | string, length: number): Buffer;
api/@ohos.buffer.d.ts
新增API NA 类名:buffer;
API声明:function from(string: String, encoding?: BufferEncoding): Buffer;
差异内容:function from(string: String, encoding?: BufferEncoding): Buffer;
api/@ohos.buffer.d.ts
新增API NA 类名:buffer;
API声明:function isBuffer(obj: Object): boolean;
差异内容:function isBuffer(obj: Object): boolean;
api/@ohos.buffer.d.ts
新增API NA 类名:buffer;
API声明:function isEncoding(encoding: string): boolean;
差异内容:function isEncoding(encoding: string): boolean;
api/@ohos.buffer.d.ts
新增API NA 类名:buffer;
API声明:function compare(buf1: Buffer | Uint8Array, buf2: Buffer | Uint8Array): -1 | 0 | 1;
差异内容:function compare(buf1: Buffer | Uint8Array, buf2: Buffer | Uint8Array): -1 | 0 | 1;
api/@ohos.buffer.d.ts
新增API NA 类名:buffer;
API声明:function transcode(source: Buffer | Uint8Array, fromEnc: string, toEnc: string): Buffer;
差异内容:function transcode(source: Buffer | Uint8Array, fromEnc: string, toEnc: string): Buffer;
api/@ohos.buffer.d.ts
新增API NA 类名:buffer;
API声明:class Buffer
差异内容:class Buffer
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:length: number;
差异内容:length: number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:buffer: ArrayBuffer;
差异内容:buffer: ArrayBuffer;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:byteOffset: number;
差异内容:byteOffset: number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:fill(value: string | Buffer | Uint8Array | number, offset?: number, end?: number, encoding?: BufferEncoding): Buffer;
差异内容:fill(value: string | Buffer | Uint8Array | number, offset?: number, end?: number, encoding?: BufferEncoding): Buffer;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:compare(target: Buffer | Uint8Array, targetStart?: number, targetEnd?: number, sourceStart?: number, sourceEnd?: number): -1 | 0 | 1;
差异内容:compare(target: Buffer | Uint8Array, targetStart?: number, targetEnd?: number, sourceStart?: number, sourceEnd?: number): -1 | 0 | 1;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:copy(target: Buffer | Uint8Array, targetStart?: number, sourceStart?: number, sourceEnd?: number): number;
差异内容:copy(target: Buffer | Uint8Array, targetStart?: number, sourceStart?: number, sourceEnd?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:equals(otherBuffer: Uint8Array | Buffer): boolean;
差异内容:equals(otherBuffer: Uint8Array | Buffer): boolean;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:includes(value: string | number | Buffer | Uint8Array, byteOffset?: number, encoding?: BufferEncoding): boolean;
差异内容:includes(value: string | number | Buffer | Uint8Array, byteOffset?: number, encoding?: BufferEncoding): boolean;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:indexOf(value: string | number | Buffer | Uint8Array, byteOffset?: number, encoding?: BufferEncoding): number;
差异内容:indexOf(value: string | number | Buffer | Uint8Array, byteOffset?: number, encoding?: BufferEncoding): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:keys(): IterableIterator<number>;
差异内容:keys(): IterableIterator<number>;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:values(): IterableIterator<number>;
差异内容:values(): IterableIterator<number>;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:entries(): IterableIterator<[
number,
number
]>;
差异内容:entries(): IterableIterator<[
number,
number
]>;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:lastIndexOf(value: string | number | Buffer | Uint8Array, byteOffset?: number, encoding?: BufferEncoding): number;
差异内容:lastIndexOf(value: string | number | Buffer | Uint8Array, byteOffset?: number, encoding?: BufferEncoding): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readBigInt64BE(offset?: number): bigint;
差异内容:readBigInt64BE(offset?: number): bigint;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readBigInt64LE(offset?: number): bigint;
差异内容:readBigInt64LE(offset?: number): bigint;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readBigUInt64BE(offset?: number): bigint;
差异内容:readBigUInt64BE(offset?: number): bigint;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readBigUInt64LE(offset?: number): bigint;
差异内容:readBigUInt64LE(offset?: number): bigint;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readDoubleBE(offset?: number): number;
差异内容:readDoubleBE(offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readDoubleLE(offset?: number): number;
差异内容:readDoubleLE(offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readFloatBE(offset?: number): number;
差异内容:readFloatBE(offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readFloatLE(offset?: number): number;
差异内容:readFloatLE(offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readInt8(offset?: number): number;
差异内容:readInt8(offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readInt16BE(offset?: number): number;
差异内容:readInt16BE(offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readInt16LE(offset?: number): number;
差异内容:readInt16LE(offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readInt32BE(offset?: number): number;
差异内容:readInt32BE(offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readInt32LE(offset?: number): number;
差异内容:readInt32LE(offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readIntBE(offset: number, byteLength: number): number;
差异内容:readIntBE(offset: number, byteLength: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readIntLE(offset: number, byteLength: number): number;
差异内容:readIntLE(offset: number, byteLength: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readUInt8(offset?: number): number;
差异内容:readUInt8(offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readUInt16BE(offset?: number): number;
差异内容:readUInt16BE(offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readUInt16LE(offset?: number): number;
差异内容:readUInt16LE(offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readUInt32BE(offset?: number): number;
差异内容:readUInt32BE(offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readUInt32LE(offset?: number): number;
差异内容:readUInt32LE(offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readUIntBE(offset: number, byteLength: number): number;
差异内容:readUIntBE(offset: number, byteLength: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:readUIntLE(offset: number, byteLength: number): number;
差异内容:readUIntLE(offset: number, byteLength: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:subarray(start?: number, end?: number): Buffer;
差异内容:subarray(start?: number, end?: number): Buffer;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:swap16(): Buffer;
差异内容:swap16(): Buffer;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:swap32(): Buffer;
差异内容:swap32(): Buffer;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:swap64(): Buffer;
差异内容:swap64(): Buffer;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:toJSON(): Object;
差异内容:toJSON(): Object;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:toString(encoding?: string, start?: number, end?: number): string;
差异内容:toString(encoding?: string, start?: number, end?: number): string;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:write(str: string, offset?: number, length?: number, encoding?: string): number;
差异内容:write(str: string, offset?: number, length?: number, encoding?: string): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeBigInt64BE(value: bigint, offset?: number): number;
差异内容:writeBigInt64BE(value: bigint, offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeBigInt64LE(value: bigint, offset?: number): number;
差异内容:writeBigInt64LE(value: bigint, offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeBigUInt64BE(value: bigint, offset?: number): number;
差异内容:writeBigUInt64BE(value: bigint, offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeBigUInt64LE(value: bigint, offset?: number): number;
差异内容:writeBigUInt64LE(value: bigint, offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeDoubleBE(value: number, offset?: number): number;
差异内容:writeDoubleBE(value: number, offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeDoubleLE(value: number, offset?: number): number;
差异内容:writeDoubleLE(value: number, offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeFloatBE(value: number, offset?: number): number;
差异内容:writeFloatBE(value: number, offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeFloatLE(value: number, offset?: number): number;
差异内容:writeFloatLE(value: number, offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeInt8(value: number, offset?: number): number;
差异内容:writeInt8(value: number, offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeInt16BE(value: number, offset?: number): number;
差异内容:writeInt16BE(value: number, offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeInt16LE(value: number, offset?: number): number;
差异内容:writeInt16LE(value: number, offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeInt32BE(value: number, offset?: number): number;
差异内容:writeInt32BE(value: number, offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeInt32LE(value: number, offset?: number): number;
差异内容:writeInt32LE(value: number, offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeIntBE(value: number, offset: number, byteLength: number): number;
差异内容:writeIntBE(value: number, offset: number, byteLength: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeIntLE(value: number, offset: number, byteLength: number): number;
差异内容:writeIntLE(value: number, offset: number, byteLength: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeUInt8(value: number, offset?: number): number;
差异内容:writeUInt8(value: number, offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeUInt16BE(value: number, offset?: number): number;
差异内容:writeUInt16BE(value: number, offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeUInt16LE(value: number, offset?: number): number;
差异内容:writeUInt16LE(value: number, offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeUInt32BE(value: number, offset?: number): number;
差异内容:writeUInt32BE(value: number, offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeUInt32LE(value: number, offset?: number): number;
差异内容:writeUInt32LE(value: number, offset?: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeUIntBE(value: number, offset: number, byteLength: number): number;
差异内容:writeUIntBE(value: number, offset: number, byteLength: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:Buffer;
API声明:writeUIntLE(value: number, offset: number, byteLength: number): number;
差异内容:writeUIntLE(value: number, offset: number, byteLength: number): number;
api/@ohos.buffer.d.ts
新增API NA 类名:buffer;
API声明:class Blob
差异内容:class Blob
api/@ohos.buffer.d.ts
新增API NA 类名:Blob;
API声明:size: number;
差异内容:size: number;
api/@ohos.buffer.d.ts
新增API NA 类名:Blob;
API声明:type: string;
差异内容:type: string;
api/@ohos.buffer.d.ts
新增API NA 类名:Blob;
API声明:arrayBuffer(): Promise<ArrayBuffer>;
差异内容:arrayBuffer(): Promise<ArrayBuffer>;
api/@ohos.buffer.d.ts
新增API NA 类名:Blob;
API声明:slice(start?: number, end?: number, type?: string): Blob;
差异内容:slice(start?: number, end?: number, type?: string): Blob;
api/@ohos.buffer.d.ts
新增API NA 类名:Blob;
API声明:text(): Promise<string>;
差异内容:text(): Promise<string>;
api/@ohos.buffer.d.ts
新增API NA 类名:global;
API声明:declare namespace xml
差异内容:declare namespace xml
api/@ohos.convertxml.d.ts
新增API NA 类名:xml;
API声明:interface ConvertOptions
差异内容:interface ConvertOptions
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:trim: boolean;
差异内容:trim: boolean;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:ignoreDeclaration?: boolean;
差异内容:ignoreDeclaration?: boolean;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:ignoreInstruction?: boolean;
差异内容:ignoreInstruction?: boolean;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:ignoreAttributes?: boolean;
差异内容:ignoreAttributes?: boolean;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:ignoreComment?: boolean;
差异内容:ignoreComment?: boolean;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:ignoreCDATA?: boolean;
差异内容:ignoreCDATA?: boolean;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:ignoreDoctype?: boolean;
差异内容:ignoreDoctype?: boolean;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:ignoreText?: boolean;
差异内容:ignoreText?: boolean;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:declarationKey: string;
差异内容:declarationKey: string;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:instructionKey: string;
差异内容:instructionKey: string;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:attributesKey: string;
差异内容:attributesKey: string;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:textKey: string;
差异内容:textKey: string;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:cdataKey: string;
差异内容:cdataKey: string;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:doctypeKey: string;
差异内容:doctypeKey: string;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:commentKey: string;
差异内容:commentKey: string;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:parentKey: string;
差异内容:parentKey: string;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:typeKey: string;
差异内容:typeKey: string;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:nameKey: string;
差异内容:nameKey: string;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertOptions;
API声明:elementsKey: string;
差异内容:elementsKey: string;
api/@ohos.convertxml.d.ts
新增API NA 类名:xml;
API声明:class ConvertXML
差异内容:class ConvertXML
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertXML;
API声明:convert(xml: string, options?: ConvertOptions): Object;
差异内容:convert(xml: string, options?: ConvertOptions): Object;
api/@ohos.convertxml.d.ts
新增API NA 类名:ConvertXML;
API声明:convertToJSObject(xml: string, options?: ConvertOptions): Object;
差异内容:convertToJSObject(xml: string, options?: ConvertOptions): Object;
api/@ohos.convertxml.d.ts
新增API NA 类名:global;
API声明:declare namespace process
差异内容:declare namespace process
api/@ohos.process.d.ts
新增API NA 类名:process;
API声明:export class ProcessManager
差异内容:export class ProcessManager
api/@ohos.process.d.ts
新增API NA 类名:ProcessManager;
API声明:isAppUid(v: number): boolean;
差异内容:isAppUid(v: number): boolean;
api/@ohos.process.d.ts
新增API NA 类名:ProcessManager;
API声明:getUidForName(v: string): number;
差异内容:getUidForName(v: string): number;
api/@ohos.process.d.ts
新增API NA 类名:ProcessManager;
API声明:getThreadPriority(v: number): number;
差异内容:getThreadPriority(v: number): number;
api/@ohos.process.d.ts
新增API NA 类名:ProcessManager;
API声明:getSystemConfig(name: number): number;
差异内容:getSystemConfig(name: number): number;
api/@ohos.process.d.ts
新增API NA 类名:ProcessManager;
API声明:getEnvironmentVar(name: string): string;
差异内容:getEnvironmentVar(name: string): string;
api/@ohos.process.d.ts
新增API NA 类名:ProcessManager;
API声明:exit(code: number): void;
差异内容:exit(code: number): void;
api/@ohos.process.d.ts
新增API NA 类名:ProcessManager;
API声明:kill(signal: number, pid: number): boolean;
差异内容:kill(signal: number, pid: number): boolean;
api/@ohos.process.d.ts
新增API NA 类名:process;
API声明:const uid: number;
差异内容:const uid: number;
api/@ohos.process.d.ts
新增API NA 类名:process;
API声明:const pid: number;
差异内容:const pid: number;
api/@ohos.process.d.ts
新增API NA 类名:process;
API声明:const tid: number;
差异内容:const tid: number;
api/@ohos.process.d.ts
新增API NA 类名:process;
API声明:function isIsolatedProcess(): boolean;
差异内容:function isIsolatedProcess(): boolean;
api/@ohos.process.d.ts
新增API NA 类名:process;
API声明:function isAppUid(v: number): boolean;
差异内容:function isAppUid(v: number): boolean;
api/@ohos.process.d.ts
新增API NA 类名:process;
API声明:function is64Bit(): boolean;
差异内容:function is64Bit(): boolean;
api/@ohos.process.d.ts
新增API NA 类名:process;
API声明:function getUidForName(v: string): number;
差异内容:function getUidForName(v: string): number;
api/@ohos.process.d.ts
新增API NA 类名:process;
API声明:function getThreadPriority(v: number): number;
差异内容:function getThreadPriority(v: number): number;
api/@ohos.process.d.ts
新增API NA 类名:process;
API声明:function getStartRealtime(): number;
差异内容:function getStartRealtime(): number;
api/@ohos.process.d.ts
新增API NA 类名:process;
API声明:function getPastCpuTime(): number;
差异内容:function getPastCpuTime(): number;
api/@ohos.process.d.ts
新增API NA 类名:process;
API声明:function getSystemConfig(name: number): number;
差异内容:function getSystemConfig(name: number): number;
api/@ohos.process.d.ts
新增API NA 类名:process;
API声明:function getEnvironmentVar(name: string): string;
差异内容:function getEnvironmentVar(name: string): string;
api/@ohos.process.d.ts
新增API NA 类名:process;
API声明:type EventListener = (evt: Object) => void;
差异内容:type EventListener = (evt: Object) => void;
api/@ohos.process.d.ts
新增API NA 类名:process;
API声明:function abort(): void;
差异内容:function abort(): void;
api/@ohos.process.d.ts
新增API NA 类名:process;
API声明:function exit(code: number): void;
差异内容:function exit(code: number): void;
api/@ohos.process.d.ts
新增API NA 类名:process;
API声明:function uptime(): number;
差异内容:function uptime(): number;
api/@ohos.process.d.ts
新增API NA 类名:process;
API声明:function kill(signal: number, pid: number): boolean;
差异内容:function kill(signal: number, pid: number): boolean;
api/@ohos.process.d.ts
新增API NA 类名:global;
API声明:declare namespace taskpool
差异内容:declare namespace taskpool
api/@ohos.taskpool.d.ts
新增API NA 类名:taskpool;
API声明:enum Priority
差异内容:enum Priority
api/@ohos.taskpool.d.ts
新增API NA 类名:Priority;
API声明:HIGH = 0
差异内容:HIGH = 0
api/@ohos.taskpool.d.ts
新增API NA 类名:Priority;
API声明:MEDIUM = 1
差异内容:MEDIUM = 1
api/@ohos.taskpool.d.ts
新增API NA 类名:Priority;
API声明:LOW = 2
差异内容:LOW = 2
api/@ohos.taskpool.d.ts
新增API NA 类名:taskpool;
API声明:class Task
差异内容:class Task
api/@ohos.taskpool.d.ts
新增API NA 类名:Task;
API声明:static isCanceled(): boolean;
差异内容:static isCanceled(): boolean;
api/@ohos.taskpool.d.ts
新增API NA 类名:Task;
API声明:static sendData(...args: Object[]): void;
差异内容:static sendData(...args: Object[]): void;
api/@ohos.taskpool.d.ts
新增API NA 类名:Task;
API声明:setTransferList(transfer?: ArrayBuffer[]): void;
差异内容:setTransferList(transfer?: ArrayBuffer[]): void;
api/@ohos.taskpool.d.ts
新增API NA 类名:Task;
API声明:setCloneList(cloneList: Object[] | ArrayBuffer[]): void;
差异内容:setCloneList(cloneList: Object[] | ArrayBuffer[]): void;
api/@ohos.taskpool.d.ts
新增API NA 类名:Task;
API声明:onReceiveData(callback?: Function): void;
差异内容:onReceiveData(callback?: Function): void;
api/@ohos.taskpool.d.ts
新增API NA 类名:Task;
API声明:addDependency(...tasks: Task[]): void;
差异内容:addDependency(...tasks: Task[]): void;
api/@ohos.taskpool.d.ts
新增API NA 类名:Task;
API声明:removeDependency(...tasks: Task[]): void;
差异内容:removeDependency(...tasks: Task[]): void;
api/@ohos.taskpool.d.ts
新增API NA 类名:Task;
API声明:function: Function;
差异内容:function: Function;
api/@ohos.taskpool.d.ts
新增API NA 类名:Task;
API声明:arguments?: Object[];
差异内容:arguments?: Object[];
api/@ohos.taskpool.d.ts
新增API NA 类名:Task;
API声明:name: string;
差异内容:name: string;
api/@ohos.taskpool.d.ts
新增API NA 类名:Task;
API声明:totalDuration: number;
差异内容:totalDuration: number;
api/@ohos.taskpool.d.ts
新增API NA 类名:Task;
API声明:ioDuration: number;
差异内容:ioDuration: number;
api/@ohos.taskpool.d.ts
新增API NA 类名:Task;
API声明:cpuDuration: number;
差异内容:cpuDuration: number;
api/@ohos.taskpool.d.ts
新增API NA 类名:taskpool;
API声明:class TaskGroup
差异内容:class TaskGroup
api/@ohos.taskpool.d.ts
新增API NA 类名:TaskGroup;
API声明:addTask(func: Function, ...args: Object[]): void;
差异内容:addTask(func: Function, ...args: Object[]): void;
api/@ohos.taskpool.d.ts
新增API NA 类名:TaskGroup;
API声明:addTask(task: Task): void;
差异内容:addTask(task: Task): void;
api/@ohos.taskpool.d.ts
新增API NA 类名:TaskGroup;
API声明:name: string;
差异内容:name: string;
api/@ohos.taskpool.d.ts
新增API NA 类名:taskpool;
API声明:class SequenceRunner
差异内容:class SequenceRunner
api/@ohos.taskpool.d.ts
新增API NA 类名:SequenceRunner;
API声明:execute(task: Task): Promise<Object>;
差异内容:execute(task: Task): Promise<Object>;
api/@ohos.taskpool.d.ts
新增API NA 类名:taskpool;
API声明:enum State
差异内容:enum State
api/@ohos.taskpool.d.ts
新增API NA 类名:State;
API声明:WAITING = 1
差异内容:WAITING = 1
api/@ohos.taskpool.d.ts
新增API NA 类名:State;
API声明:RUNNING = 2
差异内容:RUNNING = 2
api/@ohos.taskpool.d.ts
新增API NA 类名:State;
API声明:CANCELED = 3
差异内容:CANCELED = 3
api/@ohos.taskpool.d.ts
新增API NA 类名:taskpool;
API声明:class TaskInfo
差异内容:class TaskInfo
api/@ohos.taskpool.d.ts
新增API NA 类名:TaskInfo;
API声明:taskId: number;
差异内容:taskId: number;
api/@ohos.taskpool.d.ts
新增API NA 类名:TaskInfo;
API声明:state: State;
差异内容:state: State;
api/@ohos.taskpool.d.ts
新增API NA 类名:TaskInfo;
API声明:duration?: number;
差异内容:duration?: number;
api/@ohos.taskpool.d.ts
新增API NA 类名:taskpool;
API声明:class ThreadInfo
差异内容:class ThreadInfo
api/@ohos.taskpool.d.ts
新增API NA 类名:ThreadInfo;
API声明:tid: number;
差异内容:tid: number;
api/@ohos.taskpool.d.ts
新增API NA 类名:ThreadInfo;
API声明:taskIds?: number[];
差异内容:taskIds?: number[];
api/@ohos.taskpool.d.ts
新增API NA 类名:ThreadInfo;
API声明:priority?: Priority;
差异内容:priority?: Priority;
api/@ohos.taskpool.d.ts
新增API NA 类名:taskpool;
API声明:class TaskPoolInfo
差异内容:class TaskPoolInfo
api/@ohos.taskpool.d.ts
新增API NA 类名:TaskPoolInfo;
API声明:threadInfos: ThreadInfo[];
差异内容:threadInfos: ThreadInfo[];
api/@ohos.taskpool.d.ts
新增API NA 类名:TaskPoolInfo;
API声明:taskInfos: TaskInfo[];
差异内容:taskInfos: TaskInfo[];
api/@ohos.taskpool.d.ts
新增API NA 类名:taskpool;
API声明:function execute(func: Function, ...args: Object[]): Promise<Object>;
差异内容:function execute(func: Function, ...args: Object[]): Promise<Object>;
api/@ohos.taskpool.d.ts
新增API NA 类名:taskpool;
API声明:function execute(task: Task, priority?: Priority): Promise<Object>;
差异内容:function execute(task: Task, priority?: Priority): Promise<Object>;
api/@ohos.taskpool.d.ts
新增API NA 类名:taskpool;
API声明:function execute(group: TaskGroup, priority?: Priority): Promise<Object[]>;
差异内容:function execute(group: TaskGroup, priority?: Priority): Promise<Object[]>;
api/@ohos.taskpool.d.ts
新增API NA 类名:taskpool;
API声明:function executeDelayed(delayTime: number, task: Task, priority?: Priority): Promise<Object>;
差异内容:function executeDelayed(delayTime: number, task: Task, priority?: Priority): Promise<Object>;
api/@ohos.taskpool.d.ts
新增API NA 类名:taskpool;
API声明:function cancel(task: Task): void;
差异内容:function cancel(task: Task): void;
api/@ohos.taskpool.d.ts
新增API NA 类名:taskpool;
API声明:function cancel(group: TaskGroup): void;
差异内容:function cancel(group: TaskGroup): void;
api/@ohos.taskpool.d.ts
新增API NA 类名:taskpool;
API声明:function getTaskPoolInfo(): TaskPoolInfo;
差异内容:function getTaskPoolInfo(): TaskPoolInfo;
api/@ohos.taskpool.d.ts
新增API NA 类名:global;
API声明:declare namespace uri
差异内容:declare namespace uri
api/@ohos.uri.d.ts
新增API NA 类名:uri;
API声明:class URI
差异内容:class URI
api/@ohos.uri.d.ts
新增API NA 类名:URI;
API声明:toString(): string;
差异内容:toString(): string;
api/@ohos.uri.d.ts
新增API NA 类名:URI;
API声明:equals(other: URI): boolean;
差异内容:equals(other: URI): boolean;
api/@ohos.uri.d.ts
新增API NA 类名:URI;
API声明:equalsTo(other: URI): boolean;
差异内容:equalsTo(other: URI): boolean;
api/@ohos.uri.d.ts
新增API NA 类名:URI;
API声明:checkIsAbsolute(): boolean;
差异内容:checkIsAbsolute(): boolean;
api/@ohos.uri.d.ts
新增API NA 类名:URI;
API声明:normalize(): URI;
差异内容:normalize(): URI;
api/@ohos.uri.d.ts
新增API NA 类名:URI;
API声明:scheme: string;
差异内容:scheme: string;
api/@ohos.uri.d.ts
新增API NA 类名:URI;
API声明:userInfo: string;
差异内容:userInfo: string;
api/@ohos.uri.d.ts
新增API NA 类名:URI;
API声明:host: string;
差异内容:host: string;
api/@ohos.uri.d.ts
新增API NA 类名:URI;
API声明:port: string;
差异内容:port: string;
api/@ohos.uri.d.ts
新增API NA 类名:URI;
API声明:path: string;
差异内容:path: string;
api/@ohos.uri.d.ts
新增API NA 类名:URI;
API声明:query: string;
差异内容:query: string;
api/@ohos.uri.d.ts
新增API NA 类名:URI;
API声明:fragment: string;
差异内容:fragment: string;
api/@ohos.uri.d.ts
新增API NA 类名:URI;
API声明:authority: string;
差异内容:authority: string;
api/@ohos.uri.d.ts
新增API NA 类名:URI;
API声明:ssp: string;
差异内容:ssp: string;
api/@ohos.uri.d.ts
新增API NA 类名:global;
API声明:declare namespace url
差异内容:declare namespace url
api/@ohos.url.d.ts
新增API NA 类名:url;
API声明:class URLSearchParams
差异内容:class URLSearchParams
api/@ohos.url.d.ts
新增API NA 类名:URLSearchParams;
API声明:append(name: string, value: string): void;
差异内容:append(name: string, value: string): void;
api/@ohos.url.d.ts
新增API NA 类名:URLSearchParams;
API声明:delete(name: string): void;
差异内容:delete(name: string): void;
api/@ohos.url.d.ts
新增API NA 类名:URLSearchParams;
API声明:getAll(name: string): string[];
差异内容:getAll(name: string): string[];
api/@ohos.url.d.ts
新增API NA 类名:URLSearchParams;
API声明:entries(): IterableIterator<[
string,
string
]>;
差异内容:entries(): IterableIterator<[
string,
string
]>;
api/@ohos.url.d.ts
新增API NA 类名:URLSearchParams;
API声明:forEach(callbackFn: (value: string, key: string, searchParams: URLSearchParams) => void, thisArg?: Object): void;
差异内容:forEach(callbackFn: (value: string, key: string, searchParams: URLSearchParams) => void, thisArg?: Object): void;
api/@ohos.url.d.ts
新增API NA 类名:URLSearchParams;
API声明:get(name: string): string | null;
差异内容:get(name: string): string | null;
api/@ohos.url.d.ts
新增API NA 类名:URLSearchParams;
API声明:has(name: string): boolean;
差异内容:has(name: string): boolean;
api/@ohos.url.d.ts
新增API NA 类名:URLSearchParams;
API声明:set(name: string, value: string): void;
差异内容:set(name: string, value: string): void;
api/@ohos.url.d.ts
新增API NA 类名:URLSearchParams;
API声明:sort(): void;
差异内容:sort(): void;
api/@ohos.url.d.ts
新增API NA 类名:URLSearchParams;
API声明:keys(): IterableIterator<string>;
差异内容:keys(): IterableIterator<string>;
api/@ohos.url.d.ts
新增API NA 类名:URLSearchParams;
API声明:values(): IterableIterator<string>;
差异内容:values(): IterableIterator<string>;
api/@ohos.url.d.ts
新增API NA 类名:URLSearchParams;
API声明:Symbol.iterator: IterableIterator<[
string,
string
]>;
差异内容:Symbol.iterator: IterableIterator<[
string,
string
]>;
api/@ohos.url.d.ts
新增API NA 类名:URLSearchParams;
API声明:toString(): string;
差异内容:toString(): string;
api/@ohos.url.d.ts
新增API NA 类名:url;
API声明:class URLParams
差异内容:class URLParams
api/@ohos.url.d.ts
新增API NA 类名:URLParams;
API声明:append(name: string, value: string): void;
差异内容:append(name: string, value: string): void;
api/@ohos.url.d.ts
新增API NA 类名:URLParams;
API声明:delete(name: string): void;
差异内容:delete(name: string): void;
api/@ohos.url.d.ts
新增API NA 类名:URLParams;
API声明:getAll(name: string): string[];
差异内容:getAll(name: string): string[];
api/@ohos.url.d.ts
新增API NA 类名:URLParams;
API声明:entries(): IterableIterator<[
string,
string
]>;
差异内容:entries(): IterableIterator<[
string,
string
]>;
api/@ohos.url.d.ts
新增API NA 类名:URLParams;
API声明:forEach(callbackFn: (value: string, key: string, searchParams: URLParams) => void, thisArg?: Object): void;
差异内容:forEach(callbackFn: (value: string, key: string, searchParams: URLParams) => void, thisArg?: Object): void;
api/@ohos.url.d.ts
新增API NA 类名:URLParams;
API声明:get(name: string): string | null;
差异内容:get(name: string): string | null;
api/@ohos.url.d.ts
新增API NA 类名:URLParams;
API声明:has(name: string): boolean;
差异内容:has(name: string): boolean;
api/@ohos.url.d.ts
新增API NA 类名:URLParams;
API声明:set(name: string, value: string): void;
差异内容:set(name: string, value: string): void;
api/@ohos.url.d.ts
新增API NA 类名:URLParams;
API声明:sort(): void;
差异内容:sort(): void;
api/@ohos.url.d.ts
新增API NA 类名:URLParams;
API声明:keys(): IterableIterator<string>;
差异内容:keys(): IterableIterator<string>;
api/@ohos.url.d.ts
新增API NA 类名:URLParams;
API声明:values(): IterableIterator<string>;
差异内容:values(): IterableIterator<string>;
api/@ohos.url.d.ts
新增API NA 类名:URLParams;
API声明:Symbol.iterator: IterableIterator<[
string,
string
]>;
差异内容:Symbol.iterator: IterableIterator<[
string,
string
]>;
api/@ohos.url.d.ts
新增API NA 类名:URLParams;
API声明:toString(): string;
差异内容:toString(): string;
api/@ohos.url.d.ts
新增API NA 类名:url;
API声明:class URL
差异内容:class URL
api/@ohos.url.d.ts
新增API NA 类名:URL;
API声明:static parseURL(url: string, base?: string | URL): URL;
差异内容:static parseURL(url: string, base?: string | URL): URL;
api/@ohos.url.d.ts
新增API NA 类名:URL;
API声明:toString(): string;
差异内容:toString(): string;
api/@ohos.url.d.ts
新增API NA 类名:URL;
API声明:toJSON(): string;
差异内容:toJSON(): string;
api/@ohos.url.d.ts
新增API NA 类名:URL;
API声明:hash: string;
差异内容:hash: string;
api/@ohos.url.d.ts
新增API NA 类名:URL;
API声明:host: string;
差异内容:host: string;
api/@ohos.url.d.ts
新增API NA 类名:URL;
API声明:hostname: string;
差异内容:hostname: string;
api/@ohos.url.d.ts
新增API NA 类名:URL;
API声明:href: string;
差异内容:href: string;
api/@ohos.url.d.ts
新增API NA 类名:URL;
API声明:readonly origin: string;
差异内容:readonly origin: string;
api/@ohos.url.d.ts
新增API NA 类名:URL;
API声明:password: string;
差异内容:password: string;
api/@ohos.url.d.ts
新增API NA 类名:URL;
API声明:pathname: string;
差异内容:pathname: string;
api/@ohos.url.d.ts
新增API NA 类名:URL;
API声明:port: string;
差异内容:port: string;
api/@ohos.url.d.ts
新增API NA 类名:URL;
API声明:protocol: string;
差异内容:protocol: string;
api/@ohos.url.d.ts
新增API NA 类名:URL;
API声明:search: string;
差异内容:search: string;
api/@ohos.url.d.ts
新增API NA 类名:URL;
API声明:readonly searchParams: URLSearchParams;
差异内容:readonly searchParams: URLSearchParams;
api/@ohos.url.d.ts
新增API NA 类名:URL;
API声明:readonly params: URLParams;
差异内容:readonly params: URLParams;
api/@ohos.url.d.ts
新增API NA 类名:URL;
API声明:username: string;
差异内容:username: string;
api/@ohos.url.d.ts
新增API NA 类名:global;
API声明:declare class ArrayList
差异内容:declare class ArrayList
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:length: number;
差异内容:length: number;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:add(element: T): boolean;
差异内容:add(element: T): boolean;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:insert(element: T, index: number): void;
差异内容:insert(element: T, index: number): void;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:has(element: T): boolean;
差异内容:has(element: T): boolean;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:getIndexOf(element: T): number;
差异内容:getIndexOf(element: T): number;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:removeByIndex(index: number): T;
差异内容:removeByIndex(index: number): T;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:remove(element: T): boolean;
差异内容:remove(element: T): boolean;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:getLastIndexOf(element: T): number;
差异内容:getLastIndexOf(element: T): number;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:removeByRange(fromIndex: number, toIndex: number): void;
差异内容:removeByRange(fromIndex: number, toIndex: number): void;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:replaceAllElements(callbackFn: (value: T, index?: number, arrlist?: ArrayList<T>) => T, thisArg?: Object): void;
差异内容:replaceAllElements(callbackFn: (value: T, index?: number, arrlist?: ArrayList<T>) => T, thisArg?: Object): void;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:forEach(callbackFn: (value: T, index?: number, arrlist?: ArrayList<T>) => void, thisArg?: Object): void;
差异内容:forEach(callbackFn: (value: T, index?: number, arrlist?: ArrayList<T>) => void, thisArg?: Object): void;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:sort(comparator?: (firstValue: T, secondValue: T) => number): void;
差异内容:sort(comparator?: (firstValue: T, secondValue: T) => number): void;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:subArrayList(fromIndex: number, toIndex: number): ArrayList<T>;
差异内容:subArrayList(fromIndex: number, toIndex: number): ArrayList<T>;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:clear(): void;
差异内容:clear(): void;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:clone(): ArrayList<T>;
差异内容:clone(): ArrayList<T>;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:getCapacity(): number;
差异内容:getCapacity(): number;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:convertToArray(): Array<T>;
差异内容:convertToArray(): Array<T>;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:isEmpty(): boolean;
差异内容:isEmpty(): boolean;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:increaseCapacityTo(newCapacity: number): void;
差异内容:increaseCapacityTo(newCapacity: number): void;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:trimToCurrentLength(): void;
差异内容:trimToCurrentLength(): void;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:ArrayList;
API声明:Symbol.iterator: IterableIterator<T>;
差异内容:Symbol.iterator: IterableIterator<T>;
api/@ohos.util.ArrayList.d.ts
新增API NA 类名:global;
API声明:declare namespace util
差异内容:declare namespace util
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:function printf(format: string, ...args: Object[]): string;
差异内容:function printf(format: string, ...args: Object[]): string;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:function format(format: string, ...args: Object[]): string;
差异内容:function format(format: string, ...args: Object[]): string;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:function getErrorString(errno: number): string;
差异内容:function getErrorString(errno: number): string;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:function errnoToString(errno: number): string;
差异内容:function errnoToString(errno: number): string;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:function callbackWrapper(original: Function): (err: Object, value: Object) => void;
差异内容:function callbackWrapper(original: Function): (err: Object, value: Object) => void;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:function promisify(original: (err: Object, value: Object) => void): Function;
差异内容:function promisify(original: (err: Object, value: Object) => void): Function;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:function promiseWrapper(original: (err: Object, value: Object) => void): Object;
差异内容:function promiseWrapper(original: (err: Object, value: Object) => void): Object;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:function generateRandomUUID(entropyCache?: boolean): string;
差异内容:function generateRandomUUID(entropyCache?: boolean): string;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:function generateRandomBinaryUUID(entropyCache?: boolean): Uint8Array;
差异内容:function generateRandomBinaryUUID(entropyCache?: boolean): Uint8Array;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:function parseUUID(uuid: string): Uint8Array;
差异内容:function parseUUID(uuid: string): Uint8Array;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:interface TextDecoderOptions
差异内容:interface TextDecoderOptions
api/@ohos.util.d.ts
新增API NA 类名:TextDecoderOptions;
API声明:fatal?: boolean;
差异内容:fatal?: boolean;
api/@ohos.util.d.ts
新增API NA 类名:TextDecoderOptions;
API声明:ignoreBOM?: boolean;
差异内容:ignoreBOM?: boolean;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:interface DecodeWithStreamOptions
差异内容:interface DecodeWithStreamOptions
api/@ohos.util.d.ts
新增API NA 类名:DecodeWithStreamOptions;
API声明:stream?: boolean;
差异内容:stream?: boolean;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:class TextDecoder
差异内容:class TextDecoder
api/@ohos.util.d.ts
新增API NA 类名:TextDecoder;
API声明:readonly encoding: string;
差异内容:readonly encoding: string;
api/@ohos.util.d.ts
新增API NA 类名:TextDecoder;
API声明:readonly fatal: boolean;
差异内容:readonly fatal: boolean;
api/@ohos.util.d.ts
新增API NA 类名:TextDecoder;
API声明:readonly ignoreBOM = false;
差异内容:readonly ignoreBOM = false;
api/@ohos.util.d.ts
新增API NA 类名:TextDecoder;
API声明:static create(encoding?: string, options?: TextDecoderOptions): TextDecoder;
差异内容:static create(encoding?: string, options?: TextDecoderOptions): TextDecoder;
api/@ohos.util.d.ts
新增API NA 类名:TextDecoder;
API声明:decode(input: Uint8Array, options?: {
stream?: false;
}): string;
差异内容:decode(input: Uint8Array, options?: {
stream?: false;
}): string;
api/@ohos.util.d.ts
新增API NA 类名:TextDecoder;
API声明:decodeWithStream(input: Uint8Array, options?: DecodeWithStreamOptions): string;
差异内容:decodeWithStream(input: Uint8Array, options?: DecodeWithStreamOptions): string;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:interface EncodeIntoUint8ArrayInfo
差异内容:interface EncodeIntoUint8ArrayInfo
api/@ohos.util.d.ts
新增API NA 类名:EncodeIntoUint8ArrayInfo;
API声明:read: number;
差异内容:read: number;
api/@ohos.util.d.ts
新增API NA 类名:EncodeIntoUint8ArrayInfo;
API声明:written: number;
差异内容:written: number;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:class TextEncoder
差异内容:class TextEncoder
api/@ohos.util.d.ts
新增API NA 类名:TextEncoder;
API声明:readonly encoding = 'utf-8';
差异内容:readonly encoding = 'utf-8';
api/@ohos.util.d.ts
新增API NA 类名:TextEncoder;
API声明:encode(input?: string): Uint8Array;
差异内容:encode(input?: string): Uint8Array;
api/@ohos.util.d.ts
新增API NA 类名:TextEncoder;
API声明:encodeInto(input?: string): Uint8Array;
差异内容:encodeInto(input?: string): Uint8Array;
api/@ohos.util.d.ts
新增API NA 类名:TextEncoder;
API声明:encodeInto(input: string, dest: Uint8Array): {
read: number;
written: number;
};
差异内容:encodeInto(input: string, dest: Uint8Array): {
read: number;
written: number;
};
api/@ohos.util.d.ts
新增API NA 类名:TextEncoder;
API声明:encodeIntoUint8Array(input: string, dest: Uint8Array): EncodeIntoUint8ArrayInfo;
差异内容:encodeIntoUint8Array(input: string, dest: Uint8Array): EncodeIntoUint8ArrayInfo;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:class RationalNumber
差异内容:class RationalNumber
api/@ohos.util.d.ts
新增API NA 类名:RationalNumber;
API声明:static parseRationalNumber(numerator: number, denominator: number): RationalNumber;
差异内容:static parseRationalNumber(numerator: number, denominator: number): RationalNumber;
api/@ohos.util.d.ts
新增API NA 类名:RationalNumber;
API声明:static createRationalFromString(rationalString: string): RationalNumber;
差异内容:static createRationalFromString(rationalString: string): RationalNumber;
api/@ohos.util.d.ts
新增API NA 类名:RationalNumber;
API声明:compareTo(another: RationalNumber): number;
差异内容:compareTo(another: RationalNumber): number;
api/@ohos.util.d.ts
新增API NA 类名:RationalNumber;
API声明:compare(another: RationalNumber): number;
差异内容:compare(another: RationalNumber): number;
api/@ohos.util.d.ts
新增API NA 类名:RationalNumber;
API声明:equals(obj: Object): boolean;
差异内容:equals(obj: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:RationalNumber;
API声明:valueOf(): number;
差异内容:valueOf(): number;
api/@ohos.util.d.ts
新增API NA 类名:RationalNumber;
API声明:static getCommonDivisor(number1: number, number2: number): number;
差异内容:static getCommonDivisor(number1: number, number2: number): number;
api/@ohos.util.d.ts
新增API NA 类名:RationalNumber;
API声明:static getCommonFactor(number1: number, number2: number): number;
差异内容:static getCommonFactor(number1: number, number2: number): number;
api/@ohos.util.d.ts
新增API NA 类名:RationalNumber;
API声明:getDenominator(): number;
差异内容:getDenominator(): number;
api/@ohos.util.d.ts
新增API NA 类名:RationalNumber;
API声明:getNumerator(): number;
差异内容:getNumerator(): number;
api/@ohos.util.d.ts
新增API NA 类名:RationalNumber;
API声明:isFinite(): boolean;
差异内容:isFinite(): boolean;
api/@ohos.util.d.ts
新增API NA 类名:RationalNumber;
API声明:isNaN(): boolean;
差异内容:isNaN(): boolean;
api/@ohos.util.d.ts
新增API NA 类名:RationalNumber;
API声明:isZero(): boolean;
差异内容:isZero(): boolean;
api/@ohos.util.d.ts
新增API NA 类名:RationalNumber;
API声明:toString(): string;
差异内容:toString(): string;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:class LruBuffer
差异内容:class LruBuffer
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:updateCapacity(newCapacity: number): void;
差异内容:updateCapacity(newCapacity: number): void;
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:toString(): string;
差异内容:toString(): string;
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:length: number;
差异内容:length: number;
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:getCapacity(): number;
差异内容:getCapacity(): number;
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:clear(): void;
差异内容:clear(): void;
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:getCreateCount(): number;
差异内容:getCreateCount(): number;
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:getMissCount(): number;
差异内容:getMissCount(): number;
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:getRemovalCount(): number;
差异内容:getRemovalCount(): number;
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:getMatchCount(): number;
差异内容:getMatchCount(): number;
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:getPutCount(): number;
差异内容:getPutCount(): number;
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:isEmpty(): boolean;
差异内容:isEmpty(): boolean;
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:get(key: K): V | undefined;
差异内容:get(key: K): V | undefined;
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:put(key: K, value: V): V;
差异内容:put(key: K, value: V): V;
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:values(): V[];
差异内容:values(): V[];
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:keys(): K[];
差异内容:keys(): K[];
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:remove(key: K): V | undefined;
差异内容:remove(key: K): V | undefined;
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:afterRemoval(isEvict: boolean, key: K, value: V, newValue: V): void;
差异内容:afterRemoval(isEvict: boolean, key: K, value: V, newValue: V): void;
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:contains(key: K): boolean;
差异内容:contains(key: K): boolean;
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:createDefault(key: K): V;
差异内容:createDefault(key: K): V;
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:entries(): IterableIterator<[
K,
V
]>;
差异内容:entries(): IterableIterator<[
K,
V
]>;
api/@ohos.util.d.ts
新增API NA 类名:LruBuffer;
API声明:Symbol.iterator: IterableIterator<[
K,
V
]>;
差异内容:Symbol.iterator: IterableIterator<[
K,
V
]>;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:class LRUCache
差异内容:class LRUCache
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:updateCapacity(newCapacity: number): void;
差异内容:updateCapacity(newCapacity: number): void;
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:toString(): string;
差异内容:toString(): string;
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:length: number;
差异内容:length: number;
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:getCapacity(): number;
差异内容:getCapacity(): number;
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:clear(): void;
差异内容:clear(): void;
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:getCreateCount(): number;
差异内容:getCreateCount(): number;
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:getMissCount(): number;
差异内容:getMissCount(): number;
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:getRemovalCount(): number;
差异内容:getRemovalCount(): number;
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:getMatchCount(): number;
差异内容:getMatchCount(): number;
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:getPutCount(): number;
差异内容:getPutCount(): number;
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:isEmpty(): boolean;
差异内容:isEmpty(): boolean;
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:get(key: K): V | undefined;
差异内容:get(key: K): V | undefined;
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:put(key: K, value: V): V;
差异内容:put(key: K, value: V): V;
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:values(): V[];
差异内容:values(): V[];
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:keys(): K[];
差异内容:keys(): K[];
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:remove(key: K): V | undefined;
差异内容:remove(key: K): V | undefined;
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:afterRemoval(isEvict: boolean, key: K, value: V, newValue: V): void;
差异内容:afterRemoval(isEvict: boolean, key: K, value: V, newValue: V): void;
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:contains(key: K): boolean;
差异内容:contains(key: K): boolean;
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:createDefault(key: K): V;
差异内容:createDefault(key: K): V;
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:entries(): IterableIterator<[
K,
V
]>;
差异内容:entries(): IterableIterator<[
K,
V
]>;
api/@ohos.util.d.ts
新增API NA 类名:LRUCache;
API声明:Symbol.iterator: IterableIterator<[
K,
V
]>;
差异内容:Symbol.iterator: IterableIterator<[
K,
V
]>;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:interface ScopeComparable
差异内容:interface ScopeComparable
api/@ohos.util.d.ts
新增API NA 类名:ScopeComparable;
API声明:compareTo(other: ScopeComparable): boolean;
差异内容:compareTo(other: ScopeComparable): boolean;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:type ScopeType = ScopeComparable | number;
差异内容:type ScopeType = ScopeComparable | number;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:class Scope
差异内容:class Scope
api/@ohos.util.d.ts
新增API NA 类名:Scope;
API声明:toString(): string;
差异内容:toString(): string;
api/@ohos.util.d.ts
新增API NA 类名:Scope;
API声明:intersect(range: Scope): Scope;
差异内容:intersect(range: Scope): Scope;
api/@ohos.util.d.ts
新增API NA 类名:Scope;
API声明:intersect(lowerObj: ScopeType, upperObj: ScopeType): Scope;
差异内容:intersect(lowerObj: ScopeType, upperObj: ScopeType): Scope;
api/@ohos.util.d.ts
新增API NA 类名:Scope;
API声明:getUpper(): ScopeType;
差异内容:getUpper(): ScopeType;
api/@ohos.util.d.ts
新增API NA 类名:Scope;
API声明:getLower(): ScopeType;
差异内容:getLower(): ScopeType;
api/@ohos.util.d.ts
新增API NA 类名:Scope;
API声明:expand(lowerObj: ScopeType, upperObj: ScopeType): Scope;
差异内容:expand(lowerObj: ScopeType, upperObj: ScopeType): Scope;
api/@ohos.util.d.ts
新增API NA 类名:Scope;
API声明:expand(range: Scope): Scope;
差异内容:expand(range: Scope): Scope;
api/@ohos.util.d.ts
新增API NA 类名:Scope;
API声明:expand(value: ScopeType): Scope;
差异内容:expand(value: ScopeType): Scope;
api/@ohos.util.d.ts
新增API NA 类名:Scope;
API声明:contains(value: ScopeType): boolean;
差异内容:contains(value: ScopeType): boolean;
api/@ohos.util.d.ts
新增API NA 类名:Scope;
API声明:contains(range: Scope): boolean;
差异内容:contains(range: Scope): boolean;
api/@ohos.util.d.ts
新增API NA 类名:Scope;
API声明:clamp(value: ScopeType): ScopeType;
差异内容:clamp(value: ScopeType): ScopeType;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:class ScopeHelper
差异内容:class ScopeHelper
api/@ohos.util.d.ts
新增API NA 类名:ScopeHelper;
API声明:toString(): string;
差异内容:toString(): string;
api/@ohos.util.d.ts
新增API NA 类名:ScopeHelper;
API声明:intersect(range: ScopeHelper): ScopeHelper;
差异内容:intersect(range: ScopeHelper): ScopeHelper;
api/@ohos.util.d.ts
新增API NA 类名:ScopeHelper;
API声明:intersect(lowerObj: ScopeType, upperObj: ScopeType): ScopeHelper;
差异内容:intersect(lowerObj: ScopeType, upperObj: ScopeType): ScopeHelper;
api/@ohos.util.d.ts
新增API NA 类名:ScopeHelper;
API声明:getUpper(): ScopeType;
差异内容:getUpper(): ScopeType;
api/@ohos.util.d.ts
新增API NA 类名:ScopeHelper;
API声明:getLower(): ScopeType;
差异内容:getLower(): ScopeType;
api/@ohos.util.d.ts
新增API NA 类名:ScopeHelper;
API声明:expand(lowerObj: ScopeType, upperObj: ScopeType): ScopeHelper;
差异内容:expand(lowerObj: ScopeType, upperObj: ScopeType): ScopeHelper;
api/@ohos.util.d.ts
新增API NA 类名:ScopeHelper;
API声明:expand(range: ScopeHelper): ScopeHelper;
差异内容:expand(range: ScopeHelper): ScopeHelper;
api/@ohos.util.d.ts
新增API NA 类名:ScopeHelper;
API声明:expand(value: ScopeType): ScopeHelper;
差异内容:expand(value: ScopeType): ScopeHelper;
api/@ohos.util.d.ts
新增API NA 类名:ScopeHelper;
API声明:contains(value: ScopeType): boolean;
差异内容:contains(value: ScopeType): boolean;
api/@ohos.util.d.ts
新增API NA 类名:ScopeHelper;
API声明:contains(range: ScopeHelper): boolean;
差异内容:contains(range: ScopeHelper): boolean;
api/@ohos.util.d.ts
新增API NA 类名:ScopeHelper;
API声明:clamp(value: ScopeType): ScopeType;
差异内容:clamp(value: ScopeType): ScopeType;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:class Base64
差异内容:class Base64
api/@ohos.util.d.ts
新增API NA 类名:Base64;
API声明:encodeSync(src: Uint8Array): Uint8Array;
差异内容:encodeSync(src: Uint8Array): Uint8Array;
api/@ohos.util.d.ts
新增API NA 类名:Base64;
API声明:encodeToStringSync(src: Uint8Array): string;
差异内容:encodeToStringSync(src: Uint8Array): string;
api/@ohos.util.d.ts
新增API NA 类名:Base64;
API声明:decodeSync(src: Uint8Array | string): Uint8Array;
差异内容:decodeSync(src: Uint8Array | string): Uint8Array;
api/@ohos.util.d.ts
新增API NA 类名:Base64;
API声明:encode(src: Uint8Array): Promise<Uint8Array>;
差异内容:encode(src: Uint8Array): Promise<Uint8Array>;
api/@ohos.util.d.ts
新增API NA 类名:Base64;
API声明:encodeToString(src: Uint8Array): Promise<string>;
差异内容:encodeToString(src: Uint8Array): Promise<string>;
api/@ohos.util.d.ts
新增API NA 类名:Base64;
API声明:decode(src: Uint8Array | string): Promise<Uint8Array>;
差异内容:decode(src: Uint8Array | string): Promise<Uint8Array>;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:enum Type
差异内容:enum Type
api/@ohos.util.d.ts
新增API NA 类名:Type;
API声明:BASIC
差异内容:BASIC
api/@ohos.util.d.ts
新增API NA 类名:Type;
API声明:MIME
差异内容:MIME
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:class Base64Helper
差异内容:class Base64Helper
api/@ohos.util.d.ts
新增API NA 类名:Base64Helper;
API声明:encodeSync(src: Uint8Array): Uint8Array;
差异内容:encodeSync(src: Uint8Array): Uint8Array;
api/@ohos.util.d.ts
新增API NA 类名:Base64Helper;
API声明:encodeToStringSync(src: Uint8Array, options?: Type): string;
差异内容:encodeToStringSync(src: Uint8Array, options?: Type): string;
api/@ohos.util.d.ts
新增API NA 类名:Base64Helper;
API声明:decodeSync(src: Uint8Array | string, options?: Type): Uint8Array;
差异内容:decodeSync(src: Uint8Array | string, options?: Type): Uint8Array;
api/@ohos.util.d.ts
新增API NA 类名:Base64Helper;
API声明:encode(src: Uint8Array): Promise<Uint8Array>;
差异内容:encode(src: Uint8Array): Promise<Uint8Array>;
api/@ohos.util.d.ts
新增API NA 类名:Base64Helper;
API声明:encodeToString(src: Uint8Array, options?: Type): Promise<string>;
差异内容:encodeToString(src: Uint8Array, options?: Type): Promise<string>;
api/@ohos.util.d.ts
新增API NA 类名:Base64Helper;
API声明:decode(src: Uint8Array | string, options?: Type): Promise<Uint8Array>;
差异内容:decode(src: Uint8Array | string, options?: Type): Promise<Uint8Array>;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:class types
差异内容:class types
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isAnyArrayBuffer(value: Object): boolean;
差异内容:isAnyArrayBuffer(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isArrayBufferView(value: Object): boolean;
差异内容:isArrayBufferView(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isArgumentsObject(value: Object): boolean;
差异内容:isArgumentsObject(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isArrayBuffer(value: Object): boolean;
差异内容:isArrayBuffer(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isAsyncFunction(value: Object): boolean;
差异内容:isAsyncFunction(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isBigInt64Array(value: Object): boolean;
差异内容:isBigInt64Array(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isBigUint64Array(value: Object): boolean;
差异内容:isBigUint64Array(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isBooleanObject(value: Object): boolean;
差异内容:isBooleanObject(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isBoxedPrimitive(value: Object): boolean;
差异内容:isBoxedPrimitive(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isDataView(value: Object): boolean;
差异内容:isDataView(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isDate(value: Object): boolean;
差异内容:isDate(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isExternal(value: Object): boolean;
差异内容:isExternal(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isFloat32Array(value: Object): boolean;
差异内容:isFloat32Array(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isFloat64Array(value: Object): boolean;
差异内容:isFloat64Array(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isGeneratorFunction(value: Object): boolean;
差异内容:isGeneratorFunction(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isGeneratorObject(value: Object): boolean;
差异内容:isGeneratorObject(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isInt8Array(value: Object): boolean;
差异内容:isInt8Array(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isInt16Array(value: Object): boolean;
差异内容:isInt16Array(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isInt32Array(value: Object): boolean;
差异内容:isInt32Array(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isMap(value: Object): boolean;
差异内容:isMap(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isMapIterator(value: Object): boolean;
差异内容:isMapIterator(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isModuleNamespaceObject(value: Object): boolean;
差异内容:isModuleNamespaceObject(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isNativeError(value: Object): boolean;
差异内容:isNativeError(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isNumberObject(value: Object): boolean;
差异内容:isNumberObject(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isPromise(value: Object): boolean;
差异内容:isPromise(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isProxy(value: Object): boolean;
差异内容:isProxy(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isRegExp(value: Object): boolean;
差异内容:isRegExp(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isSet(value: Object): boolean;
差异内容:isSet(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isSetIterator(value: Object): boolean;
差异内容:isSetIterator(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isSharedArrayBuffer(value: Object): boolean;
差异内容:isSharedArrayBuffer(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isStringObject(value: Object): boolean;
差异内容:isStringObject(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isSymbolObject(value: Object): boolean;
差异内容:isSymbolObject(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isTypedArray(value: Object): boolean;
差异内容:isTypedArray(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isUint8Array(value: Object): boolean;
差异内容:isUint8Array(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isUint8ClampedArray(value: Object): boolean;
差异内容:isUint8ClampedArray(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isUint16Array(value: Object): boolean;
差异内容:isUint16Array(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isUint32Array(value: Object): boolean;
差异内容:isUint32Array(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isWeakMap(value: Object): boolean;
差异内容:isWeakMap(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:types;
API声明:isWeakSet(value: Object): boolean;
差异内容:isWeakSet(value: Object): boolean;
api/@ohos.util.d.ts
新增API NA 类名:util;
API声明:class Aspect
差异内容:class Aspect
api/@ohos.util.d.ts
新增API NA 类名:Aspect;
API声明:static addBefore(targetClass: Object, methodName: string, isStatic: boolean, before: Function): void;
差异内容:static addBefore(targetClass: Object, methodName: string, isStatic: boolean, before: Function): void;
api/@ohos.util.d.ts
新增API NA 类名:Aspect;
API声明:static addAfter(targetClass: Object, methodName: string, isStatic: boolean, after: Function): void;
差异内容:static addAfter(targetClass: Object, methodName: string, isStatic: boolean, after: Function): void;
api/@ohos.util.d.ts
新增API NA 类名:Aspect;
API声明:static replace(targetClass: Object, methodName: string, isStatic: boolean, instead: Function): void;
差异内容:static replace(targetClass: Object, methodName: string, isStatic: boolean, instead: Function): void;
api/@ohos.util.d.ts
新增API NA 类名:global;
API声明:declare class Deque
差异内容:declare class Deque
api/@ohos.util.Deque.d.ts
新增API NA 类名:Deque;
API声明:length: number;
差异内容:length: number;
api/@ohos.util.Deque.d.ts
新增API NA 类名:Deque;
API声明:insertFront(element: T): void;
差异内容:insertFront(element: T): void;
api/@ohos.util.Deque.d.ts
新增API NA 类名:Deque;
API声明:insertEnd(element: T): void;
差异内容:insertEnd(element: T): void;
api/@ohos.util.Deque.d.ts
新增API NA 类名:Deque;
API声明:has(element: T): boolean;
差异内容:has(element: T): boolean;
api/@ohos.util.Deque.d.ts
新增API NA 类名:Deque;
API声明:getFirst(): T;
差异内容:getFirst(): T;
api/@ohos.util.Deque.d.ts
新增API NA 类名:Deque;
API声明:getLast(): T;
差异内容:getLast(): T;
api/@ohos.util.Deque.d.ts
新增API NA 类名:Deque;
API声明:popFirst(): T;
差异内容:popFirst(): T;
api/@ohos.util.Deque.d.ts
新增API NA 类名:Deque;
API声明:popLast(): T;
差异内容:popLast(): T;
api/@ohos.util.Deque.d.ts
新增API NA 类名:Deque;
API声明:forEach(callbackFn: (value: T, index?: number, deque?: Deque<T>) => void, thisArg?: Object): void;
差异内容:forEach(callbackFn: (value: T, index?: number, deque?: Deque<T>) => void, thisArg?: Object): void;
api/@ohos.util.Deque.d.ts
新增API NA 类名:Deque;
API声明:Symbol.iterator: IterableIterator<T>;
差异内容:Symbol.iterator: IterableIterator<T>;
api/@ohos.util.Deque.d.ts
新增API NA 类名:global;
API声明:declare class HashMap
差异内容:declare class HashMap
api/@ohos.util.HashMap.d.ts
新增API NA 类名:HashMap;
API声明:length: number;
差异内容:length: number;
api/@ohos.util.HashMap.d.ts
新增API NA 类名:HashMap;
API声明:isEmpty(): boolean;
差异内容:isEmpty(): boolean;
api/@ohos.util.HashMap.d.ts
新增API NA 类名:HashMap;
API声明:hasKey(key: K): boolean;
差异内容:hasKey(key: K): boolean;
api/@ohos.util.HashMap.d.ts
新增API NA 类名:HashMap;
API声明:hasValue(value: V): boolean;
差异内容:hasValue(value: V): boolean;
api/@ohos.util.HashMap.d.ts
新增API NA 类名:HashMap;
API声明:get(key: K): V;
差异内容:get(key: K): V;
api/@ohos.util.HashMap.d.ts
新增API NA 类名:HashMap;
API声明:setAll(map: HashMap<K, V>): void;
差异内容:setAll(map: HashMap<K, V>): void;
api/@ohos.util.HashMap.d.ts
新增API NA 类名:HashMap;
API声明:set(key: K, value: V): Object;
差异内容:set(key: K, value: V): Object;
api/@ohos.util.HashMap.d.ts
新增API NA 类名:HashMap;
API声明:remove(key: K): V;
差异内容:remove(key: K): V;
api/@ohos.util.HashMap.d.ts
新增API NA 类名:HashMap;
API声明:clear(): void;
差异内容:clear(): void;
api/@ohos.util.HashMap.d.ts
新增API NA 类名:HashMap;
API声明:keys(): IterableIterator<K>;
差异内容:keys(): IterableIterator<K>;
api/@ohos.util.HashMap.d.ts
新增API NA 类名:HashMap;
API声明:values(): IterableIterator<V>;
差异内容:values(): IterableIterator<V>;
api/@ohos.util.HashMap.d.ts
新增API NA 类名:HashMap;
API声明:replace(key: K, newValue: V): boolean;
差异内容:replace(key: K, newValue: V): boolean;
api/@ohos.util.HashMap.d.ts
新增API NA 类名:HashMap;
API声明:forEach(callbackFn: (value?: V, key?: K, map?: HashMap<K, V>) => void, thisArg?: Object): void;
差异内容:forEach(callbackFn: (value?: V, key?: K, map?: HashMap<K, V>) => void, thisArg?: Object): void;
api/@ohos.util.HashMap.d.ts
新增API NA 类名:HashMap;
API声明:entries(): IterableIterator<[
K,
V
]>;
差异内容:entries(): IterableIterator<[
K,
V
]>;
api/@ohos.util.HashMap.d.ts
新增API NA 类名:HashMap;
API声明:Symbol.iterator: IterableIterator<[
K,
V
]>;
差异内容:Symbol.iterator: IterableIterator<[
K,
V
]>;
api/@ohos.util.HashMap.d.ts
新增API NA 类名:global;
API声明:declare class HashSet
差异内容:declare class HashSet
api/@ohos.util.HashSet.d.ts
新增API NA 类名:HashSet;
API声明:length: number;
差异内容:length: number;
api/@ohos.util.HashSet.d.ts
新增API NA 类名:HashSet;
API声明:isEmpty(): boolean;
差异内容:isEmpty(): boolean;
api/@ohos.util.HashSet.d.ts
新增API NA 类名:HashSet;
API声明:has(value: T): boolean;
差异内容:has(value: T): boolean;
api/@ohos.util.HashSet.d.ts
新增API NA 类名:HashSet;
API声明:add(value: T): boolean;
差异内容:add(value: T): boolean;
api/@ohos.util.HashSet.d.ts
新增API NA 类名:HashSet;
API声明:remove(value: T): boolean;
差异内容:remove(value: T): boolean;
api/@ohos.util.HashSet.d.ts
新增API NA 类名:HashSet;
API声明:clear(): void;
差异内容:clear(): void;
api/@ohos.util.HashSet.d.ts
新增API NA 类名:HashSet;
API声明:forEach(callbackFn: (value?: T, key?: T, set?: HashSet<T>) => void, thisArg?: Object): void;
差异内容:forEach(callbackFn: (value?: T, key?: T, set?: HashSet<T>) => void, thisArg?: Object): void;
api/@ohos.util.HashSet.d.ts
新增API NA 类名:HashSet;
API声明:values(): IterableIterator<T>;
差异内容:values(): IterableIterator<T>;
api/@ohos.util.HashSet.d.ts
新增API NA 类名:HashSet;
API声明:entries(): IterableIterator<[
T,
T
]>;
差异内容:entries(): IterableIterator<[
T,
T
]>;
api/@ohos.util.HashSet.d.ts
新增API NA 类名:HashSet;
API声明:Symbol.iterator: IterableIterator<T>;
差异内容:Symbol.iterator: IterableIterator<T>;
api/@ohos.util.HashSet.d.ts
新增API NA 类名:global;
API声明:declare class LightWeightMap
差异内容:declare class LightWeightMap
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:length: number;
差异内容:length: number;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:hasAll(map: LightWeightMap<K, V>): boolean;
差异内容:hasAll(map: LightWeightMap<K, V>): boolean;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:hasKey(key: K): boolean;
差异内容:hasKey(key: K): boolean;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:hasValue(value: V): boolean;
差异内容:hasValue(value: V): boolean;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:increaseCapacityTo(minimumCapacity: number): void;
差异内容:increaseCapacityTo(minimumCapacity: number): void;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:entries(): IterableIterator<[
K,
V
]>;
差异内容:entries(): IterableIterator<[
K,
V
]>;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:get(key: K): V;
差异内容:get(key: K): V;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:getIndexOfKey(key: K): number;
差异内容:getIndexOfKey(key: K): number;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:getIndexOfValue(value: V): number;
差异内容:getIndexOfValue(value: V): number;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:isEmpty(): boolean;
差异内容:isEmpty(): boolean;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:getKeyAt(index: number): K;
差异内容:getKeyAt(index: number): K;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:keys(): IterableIterator<K>;
差异内容:keys(): IterableIterator<K>;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:setAll(map: LightWeightMap<K, V>): void;
差异内容:setAll(map: LightWeightMap<K, V>): void;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:set(key: K, value: V): Object;
差异内容:set(key: K, value: V): Object;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:remove(key: K): V;
差异内容:remove(key: K): V;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:removeAt(index: number): boolean;
差异内容:removeAt(index: number): boolean;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:clear(): void;
差异内容:clear(): void;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:setValueAt(index: number, newValue: V): boolean;
差异内容:setValueAt(index: number, newValue: V): boolean;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:forEach(callbackFn: (value?: V, key?: K, map?: LightWeightMap<K, V>) => void, thisArg?: Object): void;
差异内容:forEach(callbackFn: (value?: V, key?: K, map?: LightWeightMap<K, V>) => void, thisArg?: Object): void;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:Symbol.iterator: IterableIterator<[
K,
V
]>;
差异内容:Symbol.iterator: IterableIterator<[
K,
V
]>;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:toString(): String;
差异内容:toString(): String;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:getValueAt(index: number): V;
差异内容:getValueAt(index: number): V;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:LightWeightMap;
API声明:values(): IterableIterator<V>;
差异内容:values(): IterableIterator<V>;
api/@ohos.util.LightWeightMap.d.ts
新增API NA 类名:global;
API声明:declare class LightWeightSet
差异内容:declare class LightWeightSet
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:length: number;
差异内容:length: number;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:add(obj: T): boolean;
差异内容:add(obj: T): boolean;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:addAll(set: LightWeightSet<T>): boolean;
差异内容:addAll(set: LightWeightSet<T>): boolean;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:hasAll(set: LightWeightSet<T>): boolean;
差异内容:hasAll(set: LightWeightSet<T>): boolean;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:has(key: T): boolean;
差异内容:has(key: T): boolean;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:equal(obj: Object): boolean;
差异内容:equal(obj: Object): boolean;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:increaseCapacityTo(minimumCapacity: number): void;
差异内容:increaseCapacityTo(minimumCapacity: number): void;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:getIndexOf(key: T): number;
差异内容:getIndexOf(key: T): number;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:remove(key: T): T;
差异内容:remove(key: T): T;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:removeAt(index: number): boolean;
差异内容:removeAt(index: number): boolean;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:clear(): void;
差异内容:clear(): void;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:forEach(callbackFn: (value?: T, key?: T, set?: LightWeightSet<T>) => void, thisArg?: Object): void;
差异内容:forEach(callbackFn: (value?: T, key?: T, set?: LightWeightSet<T>) => void, thisArg?: Object): void;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:Symbol.iterator: IterableIterator<T>;
差异内容:Symbol.iterator: IterableIterator<T>;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:toString(): String;
差异内容:toString(): String;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:toArray(): Array<T>;
差异内容:toArray(): Array<T>;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:getValueAt(index: number): T;
差异内容:getValueAt(index: number): T;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:values(): IterableIterator<T>;
差异内容:values(): IterableIterator<T>;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:entries(): IterableIterator<[
T,
T
]>;
差异内容:entries(): IterableIterator<[
T,
T
]>;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:LightWeightSet;
API声明:isEmpty(): boolean;
差异内容:isEmpty(): boolean;
api/@ohos.util.LightWeightSet.d.ts
新增API NA 类名:global;
API声明:declare class LinkedList
差异内容:declare class LinkedList
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:length: number;
差异内容:length: number;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:add(element: T): boolean;
差异内容:add(element: T): boolean;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:insert(index: number, element: T): void;
差异内容:insert(index: number, element: T): void;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:get(index: number): T;
差异内容:get(index: number): T;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:addFirst(element: T): void;
差异内容:addFirst(element: T): void;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:removeFirst(): T;
差异内容:removeFirst(): T;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:removeLast(): T;
差异内容:removeLast(): T;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:has(element: T): boolean;
差异内容:has(element: T): boolean;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:getIndexOf(element: T): number;
差异内容:getIndexOf(element: T): number;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:removeByIndex(index: number): T;
差异内容:removeByIndex(index: number): T;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:remove(element: T): boolean;
差异内容:remove(element: T): boolean;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:removeFirstFound(element: T): boolean;
差异内容:removeFirstFound(element: T): boolean;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:removeLastFound(element: T): boolean;
差异内容:removeLastFound(element: T): boolean;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:getLastIndexOf(element: T): number;
差异内容:getLastIndexOf(element: T): number;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:getFirst(): T;
差异内容:getFirst(): T;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:getLast(): T;
差异内容:getLast(): T;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:set(index: number, element: T): T;
差异内容:set(index: number, element: T): T;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:forEach(callbackFn: (value: T, index?: number, LinkedList?: LinkedList<T>) => void, thisArg?: Object): void;
差异内容:forEach(callbackFn: (value: T, index?: number, LinkedList?: LinkedList<T>) => void, thisArg?: Object): void;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:clear(): void;
差异内容:clear(): void;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:clone(): LinkedList<T>;
差异内容:clone(): LinkedList<T>;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:convertToArray(): Array<T>;
差异内容:convertToArray(): Array<T>;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:LinkedList;
API声明:Symbol.iterator: IterableIterator<T>;
差异内容:Symbol.iterator: IterableIterator<T>;
api/@ohos.util.LinkedList.d.ts
新增API NA 类名:global;
API声明:declare class List
差异内容:declare class List
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:length: number;
差异内容:length: number;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:add(element: T): boolean;
差异内容:add(element: T): boolean;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:insert(element: T, index: number): void;
差异内容:insert(element: T, index: number): void;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:get(index: number): T;
差异内容:get(index: number): T;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:has(element: T): boolean;
差异内容:has(element: T): boolean;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:getIndexOf(element: T): number;
差异内容:getIndexOf(element: T): number;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:removeByIndex(index: number): T;
差异内容:removeByIndex(index: number): T;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:remove(element: T): boolean;
差异内容:remove(element: T): boolean;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:getLastIndexOf(element: T): number;
差异内容:getLastIndexOf(element: T): number;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:getFirst(): T;
差异内容:getFirst(): T;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:getLast(): T;
差异内容:getLast(): T;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:set(index: number, element: T): T;
差异内容:set(index: number, element: T): T;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:equal(obj: Object): boolean;
差异内容:equal(obj: Object): boolean;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:forEach(callbackFn: (value: T, index?: number, List?: List<T>) => void, thisArg?: Object): void;
差异内容:forEach(callbackFn: (value: T, index?: number, List?: List<T>) => void, thisArg?: Object): void;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:sort(comparator: (firstValue: T, secondValue: T) => number): void;
差异内容:sort(comparator: (firstValue: T, secondValue: T) => number): void;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:clear(): void;
差异内容:clear(): void;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:getSubList(fromIndex: number, toIndex: number): List<T>;
差异内容:getSubList(fromIndex: number, toIndex: number): List<T>;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:replaceAllElements(callbackFn: (value: T, index?: number, list?: List<T>) => T, thisArg?: Object): void;
差异内容:replaceAllElements(callbackFn: (value: T, index?: number, list?: List<T>) => T, thisArg?: Object): void;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:convertToArray(): Array<T>;
差异内容:convertToArray(): Array<T>;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:isEmpty(): boolean;
差异内容:isEmpty(): boolean;
api/@ohos.util.List.d.ts
新增API NA 类名:List;
API声明:Symbol.iterator: IterableIterator<T>;
差异内容:Symbol.iterator: IterableIterator<T>;
api/@ohos.util.List.d.ts
新增API NA 类名:global;
API声明:declare class PlainArray
差异内容:declare class PlainArray
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:PlainArray;
API声明:length: number;
差异内容:length: number;
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:PlainArray;
API声明:add(key: number, value: T): void;
差异内容:add(key: number, value: T): void;
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:PlainArray;
API声明:clear(): void;
差异内容:clear(): void;
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:PlainArray;
API声明:clone(): PlainArray<T>;
差异内容:clone(): PlainArray<T>;
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:PlainArray;
API声明:has(key: number): boolean;
差异内容:has(key: number): boolean;
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:PlainArray;
API声明:get(key: number): T;
差异内容:get(key: number): T;
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:PlainArray;
API声明:getIndexOfKey(key: number): number;
差异内容:getIndexOfKey(key: number): number;
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:PlainArray;
API声明:getIndexOfValue(value: T): number;
差异内容:getIndexOfValue(value: T): number;
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:PlainArray;
API声明:isEmpty(): boolean;
差异内容:isEmpty(): boolean;
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:PlainArray;
API声明:getKeyAt(index: number): number;
差异内容:getKeyAt(index: number): number;
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:PlainArray;
API声明:remove(key: number): T;
差异内容:remove(key: number): T;
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:PlainArray;
API声明:removeAt(index: number): T;
差异内容:removeAt(index: number): T;
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:PlainArray;
API声明:removeRangeFrom(index: number, size: number): number;
差异内容:removeRangeFrom(index: number, size: number): number;
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:PlainArray;
API声明:setValueAt(index: number, value: T): void;
差异内容:setValueAt(index: number, value: T): void;
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:PlainArray;
API声明:toString(): String;
差异内容:toString(): String;
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:PlainArray;
API声明:getValueAt(index: number): T;
差异内容:getValueAt(index: number): T;
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:PlainArray;
API声明:forEach(callbackFn: (value: T, index?: number, PlainArray?: PlainArray<T>) => void, thisArg?: Object): void;
差异内容:forEach(callbackFn: (value: T, index?: number, PlainArray?: PlainArray<T>) => void, thisArg?: Object): void;
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:PlainArray;
API声明:Symbol.iterator: IterableIterator<[
number,
T
]>;
差异内容:Symbol.iterator: IterableIterator<[
number,
T
]>;
api/@ohos.util.PlainArray.d.ts
新增API NA 类名:global;
API声明:declare class Queue
差异内容:declare class Queue
api/@ohos.util.Queue.d.ts
新增API NA 类名:Queue;
API声明:length: number;
差异内容:length: number;
api/@ohos.util.Queue.d.ts
新增API NA 类名:Queue;
API声明:add(element: T): boolean;
差异内容:add(element: T): boolean;
api/@ohos.util.Queue.d.ts
新增API NA 类名:Queue;
API声明:getFirst(): T;
差异内容:getFirst(): T;
api/@ohos.util.Queue.d.ts
新增API NA 类名:Queue;
API声明:pop(): T;
差异内容:pop(): T;
api/@ohos.util.Queue.d.ts
新增API NA 类名:Queue;
API声明:forEach(callbackFn: (value: T, index?: number, Queue?: Queue<T>) => void, thisArg?: Object): void;
差异内容:forEach(callbackFn: (value: T, index?: number, Queue?: Queue<T>) => void, thisArg?: Object): void;
api/@ohos.util.Queue.d.ts
新增API NA 类名:Queue;
API声明:Symbol.iterator: IterableIterator<T>;
差异内容:Symbol.iterator: IterableIterator<T>;
api/@ohos.util.Queue.d.ts
新增API NA 类名:global;
API声明:declare class Stack
差异内容:declare class Stack
api/@ohos.util.Stack.d.ts
新增API NA 类名:Stack;
API声明:length: number;
差异内容:length: number;
api/@ohos.util.Stack.d.ts
新增API NA 类名:Stack;
API声明:isEmpty(): boolean;
差异内容:isEmpty(): boolean;
api/@ohos.util.Stack.d.ts
新增API NA 类名:Stack;
API声明:peek(): T;
差异内容:peek(): T;
api/@ohos.util.Stack.d.ts
新增API NA 类名:Stack;
API声明:pop(): T;
差异内容:pop(): T;
api/@ohos.util.Stack.d.ts
新增API NA 类名:Stack;
API声明:push(item: T): T;
差异内容:push(item: T): T;
api/@ohos.util.Stack.d.ts
新增API NA 类名:Stack;
API声明:locate(element: T): number;
差异内容:locate(element: T): number;
api/@ohos.util.Stack.d.ts
新增API NA 类名:Stack;
API声明:forEach(callbackFn: (value: T, index?: number, stack?: Stack<T>) => void, thisArg?: Object): void;
差异内容:forEach(callbackFn: (value: T, index?: number, stack?: Stack<T>) => void, thisArg?: Object): void;
api/@ohos.util.Stack.d.ts
新增API NA 类名:Stack;
API声明:Symbol.iterator: IterableIterator<T>;
差异内容:Symbol.iterator: IterableIterator<T>;
api/@ohos.util.Stack.d.ts
新增API NA 类名:global;
API声明:declare class TreeMap
差异内容:declare class TreeMap
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:length: number;
差异内容:length: number;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:isEmpty(): boolean;
差异内容:isEmpty(): boolean;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:hasKey(key: K): boolean;
差异内容:hasKey(key: K): boolean;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:hasValue(value: V): boolean;
差异内容:hasValue(value: V): boolean;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:get(key: K): V;
差异内容:get(key: K): V;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:getFirstKey(): K;
差异内容:getFirstKey(): K;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:getLastKey(): K;
差异内容:getLastKey(): K;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:setAll(map: TreeMap<K, V>): void;
差异内容:setAll(map: TreeMap<K, V>): void;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:set(key: K, value: V): Object;
差异内容:set(key: K, value: V): Object;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:remove(key: K): V;
差异内容:remove(key: K): V;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:clear(): void;
差异内容:clear(): void;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:getLowerKey(key: K): K;
差异内容:getLowerKey(key: K): K;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:getHigherKey(key: K): K;
差异内容:getHigherKey(key: K): K;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:keys(): IterableIterator<K>;
差异内容:keys(): IterableIterator<K>;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:values(): IterableIterator<V>;
差异内容:values(): IterableIterator<V>;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:replace(key: K, newValue: V): boolean;
差异内容:replace(key: K, newValue: V): boolean;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:forEach(callbackFn: (value?: V, key?: K, map?: TreeMap<K, V>) => void, thisArg?: Object): void;
差异内容:forEach(callbackFn: (value?: V, key?: K, map?: TreeMap<K, V>) => void, thisArg?: Object): void;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:entries(): IterableIterator<[
K,
V
]>;
差异内容:entries(): IterableIterator<[
K,
V
]>;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:TreeMap;
API声明:Symbol.iterator: IterableIterator<[
K,
V
]>;
差异内容:Symbol.iterator: IterableIterator<[
K,
V
]>;
api/@ohos.util.TreeMap.d.ts
新增API NA 类名:global;
API声明:declare class TreeSet
差异内容:declare class TreeSet
api/@ohos.util.TreeSet.d.ts
新增API NA 类名:TreeSet;
API声明:length: number;
差异内容:length: number;
api/@ohos.util.TreeSet.d.ts
新增API NA 类名:TreeSet;
API声明:isEmpty(): boolean;
差异内容:isEmpty(): boolean;
api/@ohos.util.TreeSet.d.ts
新增API NA 类名:TreeSet;
API声明:has(value: T): boolean;
差异内容:has(value: T): boolean;
api/@ohos.util.TreeSet.d.ts
新增API NA 类名:TreeSet;
API声明:add(value: T): boolean;
差异内容:add(value: T): boolean;
api/@ohos.util.TreeSet.d.ts
新增API NA 类名:TreeSet;
API声明:remove(value: T): boolean;
差异内容:remove(value: T): boolean;
api/@ohos.util.TreeSet.d.ts
新增API NA 类名:TreeSet;
API声明:clear(): void;
差异内容:clear(): void;
api/@ohos.util.TreeSet.d.ts
新增API NA 类名:TreeSet;
API声明:getFirstValue(): T;
差异内容:getFirstValue(): T;
api/@ohos.util.TreeSet.d.ts
新增API NA 类名:TreeSet;
API声明:getLastValue(): T;
差异内容:getLastValue(): T;
api/@ohos.util.TreeSet.d.ts
新增API NA 类名:TreeSet;
API声明:getLowerValue(key: T): T;
差异内容:getLowerValue(key: T): T;
api/@ohos.util.TreeSet.d.ts
新增API NA 类名:TreeSet;
API声明:getHigherValue(key: T): T;
差异内容:getHigherValue(key: T): T;
api/@ohos.util.TreeSet.d.ts
新增API NA 类名:TreeSet;
API声明:popFirst(): T;
差异内容:popFirst(): T;
api/@ohos.util.TreeSet.d.ts
新增API NA 类名:TreeSet;
API声明:popLast(): T;
差异内容:popLast(): T;
api/@ohos.util.TreeSet.d.ts
新增API NA 类名:TreeSet;
API声明:forEach(callbackFn: (value?: T, key?: T, set?: TreeSet<T>) => void, thisArg?: Object): void;
差异内容:forEach(callbackFn: (value?: T, key?: T, set?: TreeSet<T>) => void, thisArg?: Object): void;
api/@ohos.util.TreeSet.d.ts
新增API NA 类名:TreeSet;
API声明:values(): IterableIterator<T>;
差异内容:values(): IterableIterator<T>;
api/@ohos.util.TreeSet.d.ts
新增API NA 类名:TreeSet;
API声明:entries(): IterableIterator<[
T,
T
]>;
差异内容:entries(): IterableIterator<[
T,
T
]>;
api/@ohos.util.TreeSet.d.ts
新增API NA 类名:TreeSet;
API声明:Symbol.iterator: IterableIterator<T>;
差异内容:Symbol.iterator: IterableIterator<T>;
api/@ohos.util.TreeSet.d.ts
新增API NA 类名:global;
API声明:declare class Vector
差异内容:declare class Vector
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:length: number;
差异内容:length: number;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:add(element: T): boolean;
差异内容:add(element: T): boolean;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:insert(element: T, index: number): void;
差异内容:insert(element: T, index: number): void;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:has(element: T): boolean;
差异内容:has(element: T): boolean;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:get(index: number): T;
差异内容:get(index: number): T;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:getIndexOf(element: T): number;
差异内容:getIndexOf(element: T): number;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:getFirstElement(): T;
差异内容:getFirstElement(): T;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:getLastElement(): T;
差异内容:getLastElement(): T;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:removeByIndex(index: number): T;
差异内容:removeByIndex(index: number): T;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:remove(element: T): boolean;
差异内容:remove(element: T): boolean;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:set(index: number, element: T): T;
差异内容:set(index: number, element: T): T;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:getLastIndexOf(element: T): number;
差异内容:getLastIndexOf(element: T): number;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:getLastIndexFrom(element: T, index: number): number;
差异内容:getLastIndexFrom(element: T, index: number): number;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:getIndexFrom(element: T, index: number): number;
差异内容:getIndexFrom(element: T, index: number): number;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:removeByRange(fromIndex: number, toIndex: number): void;
差异内容:removeByRange(fromIndex: number, toIndex: number): void;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:replaceAllElements(callbackFn: (value: T, index?: number, vector?: Vector<T>) => T, thisArg?: Object): void;
差异内容:replaceAllElements(callbackFn: (value: T, index?: number, vector?: Vector<T>) => T, thisArg?: Object): void;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:forEach(callbackFn: (value: T, index?: number, vector?: Vector<T>) => void, thisArg?: Object): void;
差异内容:forEach(callbackFn: (value: T, index?: number, vector?: Vector<T>) => void, thisArg?: Object): void;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:sort(comparator?: (firstValue: T, secondValue: T) => number): void;
差异内容:sort(comparator?: (firstValue: T, secondValue: T) => number): void;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:subVector(fromIndex: number, toIndex: number): Vector<T>;
差异内容:subVector(fromIndex: number, toIndex: number): Vector<T>;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:clear(): void;
差异内容:clear(): void;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:clone(): Vector<T>;
差异内容:clone(): Vector<T>;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:setLength(newSize: number): void;
差异内容:setLength(newSize: number): void;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:getCapacity(): number;
差异内容:getCapacity(): number;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:convertToArray(): Array<T>;
差异内容:convertToArray(): Array<T>;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:isEmpty(): boolean;
差异内容:isEmpty(): boolean;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:increaseCapacityTo(newCapacity: number): void;
差异内容:increaseCapacityTo(newCapacity: number): void;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:toString(): string;
差异内容:toString(): string;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:trimToCurrentLength(): void;
差异内容:trimToCurrentLength(): void;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:copyToArray(array: Array<T>): void;
差异内容:copyToArray(array: Array<T>): void;
api/@ohos.util.Vector.d.ts
新增API NA 类名:Vector;
API声明:Symbol.iterator: IterableIterator<T>;
差异内容:Symbol.iterator: IterableIterator<T>;
api/@ohos.util.Vector.d.ts
新增API NA 类名:global;
API声明:export interface WorkerOptions
差异内容:export interface WorkerOptions
api/@ohos.worker.d.ts
新增API NA 类名:WorkerOptions;
API声明:type?: 'classic' | 'module';
差异内容:type?: 'classic' | 'module';
api/@ohos.worker.d.ts
新增API NA 类名:WorkerOptions;
API声明:name?: string;
差异内容:name?: string;
api/@ohos.worker.d.ts
新增API NA 类名:WorkerOptions;
API声明:shared?: boolean;
差异内容:shared?: boolean;
api/@ohos.worker.d.ts
新增API NA 类名:global;
API声明:export interface Event
差异内容:export interface Event
api/@ohos.worker.d.ts
新增API NA 类名:Event;
API声明:readonly type: string;
差异内容:readonly type: string;
api/@ohos.worker.d.ts
新增API NA 类名:Event;
API声明:readonly timeStamp: number;
差异内容:readonly timeStamp: number;
api/@ohos.worker.d.ts
新增API NA 类名:global;
API声明:export interface ErrorEvent
差异内容:export interface ErrorEvent
api/@ohos.worker.d.ts
新增API NA 类名:ErrorEvent;
API声明:readonly message: string;
差异内容:readonly message: string;
api/@ohos.worker.d.ts
新增API NA 类名:ErrorEvent;
API声明:readonly filename: string;
差异内容:readonly filename: string;
api/@ohos.worker.d.ts
新增API NA 类名:ErrorEvent;
API声明:readonly lineno: number;
差异内容:readonly lineno: number;
api/@ohos.worker.d.ts
新增API NA 类名:ErrorEvent;
API声明:readonly colno: number;
差异内容:readonly colno: number;
api/@ohos.worker.d.ts
新增API NA 类名:ErrorEvent;
API声明:readonly error: Object;
差异内容:readonly error: Object;
api/@ohos.worker.d.ts
新增API NA 类名:global;
API声明:export interface MessageEvent
差异内容:export interface MessageEvent
api/@ohos.worker.d.ts
新增API NA 类名:MessageEvent;
API声明:readonly data: T;
差异内容:readonly data: T;
api/@ohos.worker.d.ts
新增API NA 类名:global;
API声明:export interface MessageEvents
差异内容:export interface MessageEvents
api/@ohos.worker.d.ts
新增API NA 类名:MessageEvents;
API声明:readonly data;
差异内容:readonly data;
api/@ohos.worker.d.ts
新增API NA 类名:global;
API声明:export interface PostMessageOptions
差异内容:export interface PostMessageOptions
api/@ohos.worker.d.ts
新增API NA 类名:PostMessageOptions;
API声明:transfer?: Object[];
差异内容:transfer?: Object[];
api/@ohos.worker.d.ts
新增API NA 类名:global;
API声明:export interface EventListener
差异内容:export interface EventListener
api/@ohos.worker.d.ts
新增API NA 类名:global;
API声明:export interface WorkerEventListener
差异内容:export interface WorkerEventListener
api/@ohos.worker.d.ts
新增API NA 类名:global;
API声明:type MessageType = 'message' | 'messageerror';
差异内容:type MessageType = 'message' | 'messageerror';
api/@ohos.worker.d.ts
新增API NA 类名:global;
API声明:export interface EventTarget
差异内容:export interface EventTarget
api/@ohos.worker.d.ts
新增API NA 类名:EventTarget;
API声明:addEventListener(type: string, listener: EventListener): void;
差异内容:addEventListener(type: string, listener: EventListener): void;
api/@ohos.worker.d.ts
新增API NA 类名:EventTarget;
API声明:dispatchEvent(event: Event): boolean;
差异内容:dispatchEvent(event: Event): boolean;
api/@ohos.worker.d.ts
新增API NA 类名:EventTarget;
API声明:removeEventListener(type: string, callback?: EventListener): void;
差异内容:removeEventListener(type: string, callback?: EventListener): void;
api/@ohos.worker.d.ts
新增API NA 类名:EventTarget;
API声明:removeAllListener(): void;
差异内容:removeAllListener(): void;
api/@ohos.worker.d.ts
新增API NA 类名:global;
API声明:export interface WorkerEventTarget
差异内容:export interface WorkerEventTarget
api/@ohos.worker.d.ts
新增API NA 类名:WorkerEventTarget;
API声明:addEventListener(type: string, listener: WorkerEventListener): void;
差异内容:addEventListener(type: string, listener: WorkerEventListener): void;
api/@ohos.worker.d.ts
新增API NA 类名:WorkerEventTarget;
API声明:dispatchEvent(event: Event): boolean;
差异内容:dispatchEvent(event: Event): boolean;
api/@ohos.worker.d.ts
新增API NA 类名:WorkerEventTarget;
API声明:removeEventListener(type: string, callback?: WorkerEventListener): void;
差异内容:removeEventListener(type: string, callback?: WorkerEventListener): void;
api/@ohos.worker.d.ts
新增API NA 类名:WorkerEventTarget;
API声明:removeAllListener(): void;
差异内容:removeAllListener(): void;
api/@ohos.worker.d.ts
新增API NA 类名:global;
API声明:declare interface WorkerGlobalScope
差异内容:declare interface WorkerGlobalScope
api/@ohos.worker.d.ts
新增API NA 类名:WorkerGlobalScope;
API声明:readonly name: string;
差异内容:readonly name: string;
api/@ohos.worker.d.ts
新增API NA 类名:WorkerGlobalScope;
API声明:onerror?: (ev: ErrorEvent) => void;
差异内容:onerror?: (ev: ErrorEvent) => void;
api/@ohos.worker.d.ts
新增API NA 类名:WorkerGlobalScope;
API声明:readonly self: WorkerGlobalScope & typeof globalThis;
差异内容:readonly self: WorkerGlobalScope & typeof globalThis;
api/@ohos.worker.d.ts
新增API NA 类名:global;
API声明:declare interface GlobalScope
差异内容:declare interface GlobalScope
api/@ohos.worker.d.ts
新增API NA 类名:GlobalScope;
API声明:readonly name: string;
差异内容:readonly name: string;
api/@ohos.worker.d.ts
新增API NA 类名:GlobalScope;
API声明:onerror?: (ev: ErrorEvent) => void;
差异内容:onerror?: (ev: ErrorEvent) => void;
api/@ohos.worker.d.ts
新增API NA 类名:GlobalScope;
API声明:readonly self: GlobalScope & typeof globalThis;
差异内容:readonly self: GlobalScope & typeof globalThis;
api/@ohos.worker.d.ts
新增API NA 类名:global;
API声明:export interface DedicatedWorkerGlobalScope
差异内容:export interface DedicatedWorkerGlobalScope
api/@ohos.worker.d.ts
新增API NA 类名:DedicatedWorkerGlobalScope;
API声明:onmessage?: (this: DedicatedWorkerGlobalScope, ev: MessageEvent) => void;
差异内容:onmessage?: (this: DedicatedWorkerGlobalScope, ev: MessageEvent) => void;
api/@ohos.worker.d.ts
新增API NA 类名:DedicatedWorkerGlobalScope;
API声明:onmessageerror?: (this: DedicatedWorkerGlobalScope, ev: MessageEvent) => void;
差异内容:onmessageerror?: (this: DedicatedWorkerGlobalScope, ev: MessageEvent) => void;
api/@ohos.worker.d.ts
新增API NA 类名:DedicatedWorkerGlobalScope;
API声明:close(): void;
差异内容:close(): void;
api/@ohos.worker.d.ts
新增API NA 类名:DedicatedWorkerGlobalScope;
API声明:postMessage(messageObject: Object, transfer: Transferable[]): void;
差异内容:postMessage(messageObject: Object, transfer: Transferable[]): void;
api/@ohos.worker.d.ts
新增API NA 类名:DedicatedWorkerGlobalScope;
API声明:postMessage(messageObject: Object, options?: PostMessageOptions): void;
差异内容:postMessage(messageObject: Object, options?: PostMessageOptions): void;
api/@ohos.worker.d.ts
新增API NA 类名:DedicatedWorkerGlobalScope;
API声明:postMessage(messageObject: Object, transfer: ArrayBuffer[]): void;
差异内容:postMessage(messageObject: Object, transfer: ArrayBuffer[]): void;
api/@ohos.worker.d.ts
新增API NA 类名:global;
API声明:export interface ThreadWorkerGlobalScope
差异内容:export interface ThreadWorkerGlobalScope
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorkerGlobalScope;
API声明:onmessage?: (this: ThreadWorkerGlobalScope, ev: MessageEvents) => void;
差异内容:onmessage?: (this: ThreadWorkerGlobalScope, ev: MessageEvents) => void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorkerGlobalScope;
API声明:onmessageerror?: (this: ThreadWorkerGlobalScope, ev: MessageEvents) => void;
差异内容:onmessageerror?: (this: ThreadWorkerGlobalScope, ev: MessageEvents) => void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorkerGlobalScope;
API声明:close(): void;
差异内容:close(): void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorkerGlobalScope;
API声明:postMessage(messageObject: Object, transfer: ArrayBuffer[]): void;
差异内容:postMessage(messageObject: Object, transfer: ArrayBuffer[]): void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorkerGlobalScope;
API声明:postMessage(messageObject: Object, options?: PostMessageOptions): void;
差异内容:postMessage(messageObject: Object, options?: PostMessageOptions): void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorkerGlobalScope;
API声明:callGlobalCallObjectMethod(instanceName: string, methodName: string, timeout: number, ...args: Object[]): Object;
差异内容:callGlobalCallObjectMethod(instanceName: string, methodName: string, timeout: number, ...args: Object[]): Object;
api/@ohos.worker.d.ts
新增API NA 类名:global;
API声明:declare namespace worker
差异内容:declare namespace worker
api/@ohos.worker.d.ts
新增API NA 类名:worker;
API声明:class ThreadWorker
差异内容:class ThreadWorker
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorker;
API声明:onexit?: (code: number) => void;
差异内容:onexit?: (code: number) => void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorker;
API声明:onerror?: (err: ErrorEvent) => void;
差异内容:onerror?: (err: ErrorEvent) => void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorker;
API声明:onmessage?: (event: MessageEvents) => void;
差异内容:onmessage?: (event: MessageEvents) => void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorker;
API声明:onmessageerror?: (event: MessageEvents) => void;
差异内容:onmessageerror?: (event: MessageEvents) => void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorker;
API声明:postMessage(message: Object, transfer: ArrayBuffer[]): void;
差异内容:postMessage(message: Object, transfer: ArrayBuffer[]): void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorker;
API声明:postMessage(message: Object, options?: PostMessageOptions): void;
差异内容:postMessage(message: Object, options?: PostMessageOptions): void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorker;
API声明:on(type: string, listener: WorkerEventListener): void;
差异内容:on(type: string, listener: WorkerEventListener): void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorker;
API声明:once(type: string, listener: WorkerEventListener): void;
差异内容:once(type: string, listener: WorkerEventListener): void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorker;
API声明:off(type: string, listener?: WorkerEventListener): void;
差异内容:off(type: string, listener?: WorkerEventListener): void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorker;
API声明:terminate(): void;
差异内容:terminate(): void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorker;
API声明:addEventListener(type: string, listener: WorkerEventListener): void;
差异内容:addEventListener(type: string, listener: WorkerEventListener): void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorker;
API声明:dispatchEvent(event: Event): boolean;
差异内容:dispatchEvent(event: Event): boolean;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorker;
API声明:removeEventListener(type: string, callback?: WorkerEventListener): void;
差异内容:removeEventListener(type: string, callback?: WorkerEventListener): void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorker;
API声明:removeAllListener(): void;
差异内容:removeAllListener(): void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorker;
API声明:registerGlobalCallObject(instanceName: string, globalCallObject: Object): void;
差异内容:registerGlobalCallObject(instanceName: string, globalCallObject: Object): void;
api/@ohos.worker.d.ts
新增API NA 类名:ThreadWorker;
API声明:unregisterGlobalCallObject(instanceName?: string): void;
差异内容:unregisterGlobalCallObject(instanceName?: string): void;
api/@ohos.worker.d.ts
新增API NA 类名:worker;
API声明:class RestrictedWorker
差异内容:class RestrictedWorker
api/@ohos.worker.d.ts
新增API NA 类名:worker;
API声明:class Worker
差异内容:class Worker
api/@ohos.worker.d.ts
新增API NA 类名:Worker;
API声明:onexit?: (code: number) => void;
差异内容:onexit?: (code: number) => void;
api/@ohos.worker.d.ts
新增API NA 类名:Worker;
API声明:onerror?: (err: ErrorEvent) => void;
差异内容:onerror?: (err: ErrorEvent) => void;
api/@ohos.worker.d.ts
新增API NA 类名:Worker;
API声明:onmessage?: (event: MessageEvent) => void;
差异内容:onmessage?: (event: MessageEvent) => void;
api/@ohos.worker.d.ts
新增API NA 类名:Worker;
API声明:onmessageerror?: (event: MessageEvent) => void;
差异内容:onmessageerror?: (event: MessageEvent) => void;
api/@ohos.worker.d.ts
新增API NA 类名:Worker;
API声明:postMessage(message: Object, transfer: ArrayBuffer[]): void;
差异内容:postMessage(message: Object, transfer: ArrayBuffer[]): void;
api/@ohos.worker.d.ts
新增API NA 类名:Worker;
API声明:postMessage(message: Object, options?: PostMessageOptions): void;
差异内容:postMessage(message: Object, options?: PostMessageOptions): void;
api/@ohos.worker.d.ts
新增API NA 类名:Worker;
API声明:on(type: string, listener: EventListener): void;
差异内容:on(type: string, listener: EventListener): void;
api/@ohos.worker.d.ts
新增API NA 类名:Worker;
API声明:once(type: string, listener: EventListener): void;
差异内容:once(type: string, listener: EventListener): void;
api/@ohos.worker.d.ts
新增API NA 类名:Worker;
API声明:off(type: string, listener?: EventListener): void;
差异内容:off(type: string, listener?: EventListener): void;
api/@ohos.worker.d.ts
新增API NA 类名:Worker;
API声明:terminate(): void;
差异内容:terminate(): void;
api/@ohos.worker.d.ts
新增API NA 类名:worker;
API声明:const parentPort: DedicatedWorkerGlobalScope;
差异内容:const parentPort: DedicatedWorkerGlobalScope;
api/@ohos.worker.d.ts
新增API NA 类名:worker;
API声明:const workerPort: ThreadWorkerGlobalScope;
差异内容:const workerPort: ThreadWorkerGlobalScope;
api/@ohos.worker.d.ts
新增API NA 类名:global;
API声明:declare namespace xml
差异内容:declare namespace xml
api/@ohos.xml.d.ts
新增API NA 类名:xml;
API声明:class XmlSerializer
差异内容:class XmlSerializer
api/@ohos.xml.d.ts
新增API NA 类名:XmlSerializer;
API声明:setAttributes(name: string, value: string): void;
差异内容:setAttributes(name: string, value: string): void;
api/@ohos.xml.d.ts
新增API NA 类名:XmlSerializer;
API声明:addEmptyElement(name: string): void;
差异内容:addEmptyElement(name: string): void;
api/@ohos.xml.d.ts
新增API NA 类名:XmlSerializer;
API声明:setDeclaration(): void;
差异内容:setDeclaration(): void;
api/@ohos.xml.d.ts
新增API NA 类名:XmlSerializer;
API声明:startElement(name: string): void;
差异内容:startElement(name: string): void;
api/@ohos.xml.d.ts
新增API NA 类名:XmlSerializer;
API声明:endElement(): void;
差异内容:endElement(): void;
api/@ohos.xml.d.ts
新增API NA 类名:XmlSerializer;
API声明:setNamespace(prefix: string, namespace: string): void;
差异内容:setNamespace(prefix: string, namespace: string): void;
api/@ohos.xml.d.ts
新增API NA 类名:XmlSerializer;
API声明:setComment(text: string): void;
差异内容:setComment(text: string): void;
api/@ohos.xml.d.ts
新增API NA 类名:XmlSerializer;
API声明:setCDATA(text: string): void;
差异内容:setCDATA(text: string): void;
api/@ohos.xml.d.ts
新增API NA 类名:XmlSerializer;
API声明:setText(text: string): void;
差异内容:setText(text: string): void;
api/@ohos.xml.d.ts
新增API NA 类名:XmlSerializer;
API声明:setDocType(text: string): void;
差异内容:setDocType(text: string): void;
api/@ohos.xml.d.ts
新增API NA 类名:xml;
API声明:enum EventType
差异内容:enum EventType
api/@ohos.xml.d.ts
新增API NA 类名:EventType;
API声明:START_DOCUMENT
差异内容:START_DOCUMENT
api/@ohos.xml.d.ts
新增API NA 类名:EventType;
API声明:END_DOCUMENT
差异内容:END_DOCUMENT
api/@ohos.xml.d.ts
新增API NA 类名:EventType;
API声明:START_TAG
差异内容:START_TAG
api/@ohos.xml.d.ts
新增API NA 类名:EventType;
API声明:END_TAG
差异内容:END_TAG
api/@ohos.xml.d.ts
新增API NA 类名:EventType;
API声明:TEXT
差异内容:TEXT
api/@ohos.xml.d.ts
新增API NA 类名:EventType;
API声明:CDSECT
差异内容:CDSECT
api/@ohos.xml.d.ts
新增API NA 类名:EventType;
API声明:COMMENT
差异内容:COMMENT
api/@ohos.xml.d.ts
新增API NA 类名:EventType;
API声明:DOCDECL
差异内容:DOCDECL
api/@ohos.xml.d.ts
新增API NA 类名:EventType;
API声明:INSTRUCTION
差异内容:INSTRUCTION
api/@ohos.xml.d.ts
新增API NA 类名:EventType;
API声明:ENTITY_REFERENCE
差异内容:ENTITY_REFERENCE
api/@ohos.xml.d.ts
新增API NA 类名:EventType;
API声明:WHITESPACE
差异内容:WHITESPACE
api/@ohos.xml.d.ts
新增API NA 类名:xml;
API声明:interface ParseInfo
差异内容:interface ParseInfo
api/@ohos.xml.d.ts
新增API NA 类名:ParseInfo;
API声明:getColumnNumber(): number;
差异内容:getColumnNumber(): number;
api/@ohos.xml.d.ts
新增API NA 类名:ParseInfo;
API声明:getDepth(): number;
差异内容:getDepth(): number;
api/@ohos.xml.d.ts
新增API NA 类名:ParseInfo;
API声明:getLineNumber(): number;
差异内容:getLineNumber(): number;
api/@ohos.xml.d.ts
新增API NA 类名:ParseInfo;
API声明:getName(): string;
差异内容:getName(): string;
api/@ohos.xml.d.ts
新增API NA 类名:ParseInfo;
API声明:getNamespace(): string;
差异内容:getNamespace(): string;
api/@ohos.xml.d.ts
新增API NA 类名:ParseInfo;
API声明:getPrefix(): string;
差异内容:getPrefix(): string;
api/@ohos.xml.d.ts
新增API NA 类名:ParseInfo;
API声明:getText(): string;
差异内容:getText(): string;
api/@ohos.xml.d.ts
新增API NA 类名:ParseInfo;
API声明:isEmptyElementTag(): boolean;
差异内容:isEmptyElementTag(): boolean;
api/@ohos.xml.d.ts
新增API NA 类名:ParseInfo;
API声明:isWhitespace(): boolean;
差异内容:isWhitespace(): boolean;
api/@ohos.xml.d.ts
新增API NA 类名:ParseInfo;
API声明:getAttributeCount(): number;
差异内容:getAttributeCount(): number;
api/@ohos.xml.d.ts
新增API NA 类名:xml;
API声明:interface ParseOptions
差异内容:interface ParseOptions
api/@ohos.xml.d.ts
新增API NA 类名:ParseOptions;
API声明:supportDoctype?: boolean;
差异内容:supportDoctype?: boolean;
api/@ohos.xml.d.ts
新增API NA 类名:ParseOptions;
API声明:ignoreNameSpace?: boolean;
差异内容:ignoreNameSpace?: boolean;
api/@ohos.xml.d.ts
新增API NA 类名:ParseOptions;
API声明:tagValueCallbackFunction?: (name: string, value: string) => boolean;
差异内容:tagValueCallbackFunction?: (name: string, value: string) => boolean;
api/@ohos.xml.d.ts
新增API NA 类名:ParseOptions;
API声明:attributeValueCallbackFunction?: (name: string, value: string) => boolean;
差异内容:attributeValueCallbackFunction?: (name: string, value: string) => boolean;
api/@ohos.xml.d.ts
新增API NA 类名:ParseOptions;
API声明:tokenValueCallbackFunction?: (eventType: EventType, value: ParseInfo) => boolean;
差异内容:tokenValueCallbackFunction?: (eventType: EventType, value: ParseInfo) => boolean;
api/@ohos.xml.d.ts
新增API NA 类名:xml;
API声明:class XmlPullParser
差异内容:class XmlPullParser
api/@ohos.xml.d.ts
新增API NA 类名:XmlPullParser;
API声明:parse(option: ParseOptions): void;
差异内容:parse(option: ParseOptions): void;
api/@ohos.xml.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.buffer.d.ts
差异内容:ArkTS
api/@ohos.buffer.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.convertxml.d.ts
差异内容:ArkTS
api/@ohos.convertxml.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.process.d.ts
差异内容:ArkTS
api/@ohos.process.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.taskpool.d.ts
差异内容:ArkTS
api/@ohos.taskpool.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.uri.d.ts
差异内容:ArkTS
api/@ohos.uri.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.url.d.ts
差异内容:ArkTS
api/@ohos.url.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.util.ArrayList.d.ts
差异内容:ArkTS
api/@ohos.util.ArrayList.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.util.d.ts
差异内容:ArkTS
api/@ohos.util.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.util.Deque.d.ts
差异内容:ArkTS
api/@ohos.util.Deque.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.util.HashMap.d.ts
差异内容:ArkTS
api/@ohos.util.HashMap.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.util.HashSet.d.ts
差异内容:ArkTS
api/@ohos.util.HashSet.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.util.LightWeightMap.d.ts
差异内容:ArkTS
api/@ohos.util.LightWeightMap.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.util.LightWeightSet.d.ts
差异内容:ArkTS
api/@ohos.util.LightWeightSet.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.util.LinkedList.d.ts
差异内容:ArkTS
api/@ohos.util.LinkedList.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.util.List.d.ts
差异内容:ArkTS
api/@ohos.util.List.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.util.PlainArray.d.ts
差异内容:ArkTS
api/@ohos.util.PlainArray.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.util.Queue.d.ts
差异内容:ArkTS
api/@ohos.util.Queue.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.util.Stack.d.ts
差异内容:ArkTS
api/@ohos.util.Stack.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.util.TreeMap.d.ts
差异内容:ArkTS
api/@ohos.util.TreeMap.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.util.TreeSet.d.ts
差异内容:ArkTS
api/@ohos.util.TreeSet.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.util.Vector.d.ts
差异内容:ArkTS
api/@ohos.util.Vector.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.worker.d.ts
差异内容:ArkTS
api/@ohos.worker.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:api@ohos.xml.d.ts
差异内容:ArkTS
api/@ohos.xml.d.ts
新增kit 类名:global;
API声明:
差异内容:NA
类名:global;
API声明:kits@kit.ArkTS.d.ts
差异内容:ArkTS
kits/@kit.ArkTS.d.ts