1| 操作 | 旧版本 | 新版本 | d.ts文件 | 2| ---- | ------ | ------ | -------- | 3|删除|类名:inputMethod;<br>方法or属性:function getInputMethodSetting(): InputMethodSetting;|NA|@ohos.inputmethod.d.ts| 4|删除|类名:inputMethod;<br>方法or属性:function getInputMethodController(): InputMethodController;|NA|@ohos.inputmethod.d.ts| 5|删除|类名:InputMethodSetting;<br>方法or属性:listInputMethod(callback: AsyncCallback\<Array\<InputMethodProperty>>): void;|NA|@ohos.inputmethod.d.ts| 6|删除|类名:InputMethodSetting;<br>方法or属性:listInputMethod(): Promise\<Array\<InputMethodProperty>>;|NA|@ohos.inputmethod.d.ts| 7|删除|类名:InputMethodSetting;<br>方法or属性:displayOptionalInputMethod(callback: AsyncCallback\<void>): void;|NA|@ohos.inputmethod.d.ts| 8|删除|类名:InputMethodSetting;<br>方法or属性:displayOptionalInputMethod(): Promise\<void>;|NA|@ohos.inputmethod.d.ts| 9|删除|类名:InputMethodController;<br>方法or属性:stopInput(callback: AsyncCallback\<boolean>): void;|NA|@ohos.inputmethod.d.ts| 10|删除|类名:InputMethodController;<br>方法or属性:stopInput(): Promise\<boolean>;|NA|@ohos.inputmethod.d.ts| 11|删除|类名:InputMethodProperty;<br>方法or属性:readonly packageName: string;|NA|@ohos.inputmethod.d.ts| 12|删除|类名:InputMethodProperty;<br>方法or属性:readonly methodId: string;|NA|@ohos.inputmethod.d.ts| 13|删除|类名:inputMethodEngine;<br>方法or属性:function getInputMethodEngine(): InputMethodEngine;|NA|@ohos.inputmethodengine.d.ts| 14|删除|类名:inputMethodEngine;<br>方法or属性:function createKeyboardDelegate(): KeyboardDelegate;|NA|@ohos.inputmethodengine.d.ts| 15|删除|类名:KeyboardController;<br>方法or属性:hideKeyboard(callback: AsyncCallback\<void>): void;|NA|@ohos.inputmethodengine.d.ts| 16|删除|类名:KeyboardController;<br>方法or属性:hideKeyboard(): Promise\<void>;|NA|@ohos.inputmethodengine.d.ts| 17|删除|类名:InputMethodEngine;<br>方法or属性:on(type: 'inputStart', callback: (kbController: KeyboardController, textInputClient: TextInputClient) => void): void;|NA|@ohos.inputmethodengine.d.ts| 18|删除|类名:InputMethodEngine;<br>方法or属性:on(type: 'keyboardShow'\|'keyboardHide', callback: () => void): void;|NA|@ohos.inputmethodengine.d.ts| 19|删除|类名:InputMethodEngine;<br>方法or属性:off(type: 'inputStart', callback?: (kbController: KeyboardController, textInputClient: TextInputClient) => void): void;|NA|@ohos.inputmethodengine.d.ts| 20|删除|类名:InputMethodEngine;<br>方法or属性:off(type: 'keyboardShow'\|'keyboardHide', callback?: () => void): void;|NA|@ohos.inputmethodengine.d.ts| 21|删除|类名:TextInputClient;<br>方法or属性:sendKeyFunction(action: number, callback: AsyncCallback\<boolean>): void;|NA|@ohos.inputmethodengine.d.ts| 22|删除|类名:TextInputClient;<br>方法or属性:sendKeyFunction(action: number): Promise\<boolean>;|NA|@ohos.inputmethodengine.d.ts| 23|删除|类名:TextInputClient;<br>方法or属性:deleteForward(length: number, callback: AsyncCallback\<boolean>): void;|NA|@ohos.inputmethodengine.d.ts| 24|删除|类名:TextInputClient;<br>方法or属性:deleteForward(length: number): Promise\<boolean>;|NA|@ohos.inputmethodengine.d.ts| 25|删除|类名:TextInputClient;<br>方法or属性:deleteBackward(length: number, callback: AsyncCallback\<boolean>): void;|NA|@ohos.inputmethodengine.d.ts| 26|删除|类名:TextInputClient;<br>方法or属性:deleteBackward(length: number): Promise\<boolean>;|NA|@ohos.inputmethodengine.d.ts| 27|删除|类名:TextInputClient;<br>方法or属性:insertText(text: string, callback: AsyncCallback\<boolean>): void;|NA|@ohos.inputmethodengine.d.ts| 28|删除|类名:TextInputClient;<br>方法or属性:insertText(text: string): Promise\<boolean>;|NA|@ohos.inputmethodengine.d.ts| 29|删除|类名:TextInputClient;<br>方法or属性:getForward(length: number, callback: AsyncCallback\<string>): void;|NA|@ohos.inputmethodengine.d.ts| 30|删除|类名:TextInputClient;<br>方法or属性:getForward(length: number): Promise\<string>;|NA|@ohos.inputmethodengine.d.ts| 31|删除|类名:TextInputClient;<br>方法or属性:getBackward(length: number, callback: AsyncCallback\<string>): void;|NA|@ohos.inputmethodengine.d.ts| 32|删除|类名:TextInputClient;<br>方法or属性:getBackward(length: number): Promise\<string>;|NA|@ohos.inputmethodengine.d.ts| 33|删除|类名:TextInputClient;<br>方法or属性:getEditorAttribute(callback: AsyncCallback\<EditorAttribute>): void;|NA|@ohos.inputmethodengine.d.ts| 34|删除|类名:TextInputClient;<br>方法or属性:getEditorAttribute(): Promise\<EditorAttribute>;|NA|@ohos.inputmethodengine.d.ts| 35|删除|类名:KeyboardDelegate;<br>方法or属性:on(type: 'keyDown'\|'keyUp', callback: (event: KeyEvent) => boolean): void;|NA|@ohos.inputmethodengine.d.ts| 36|删除|类名:KeyboardDelegate;<br>方法or属性:on(type: 'cursorContextChange', callback: (x: number, y: number, height: number) => void): void;|NA|@ohos.inputmethodengine.d.ts| 37|删除|类名:KeyboardDelegate;<br>方法or属性:on(type: 'selectionChange', callback: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void): void;|NA|@ohos.inputmethodengine.d.ts| 38|删除|类名:KeyboardDelegate;<br>方法or属性:on(type: 'textChange', callback: (text: string) => void): void;|NA|@ohos.inputmethodengine.d.ts| 39|删除|类名:KeyboardDelegate;<br>方法or属性:off(type: 'keyDown'\|'keyUp', callback?: (event: KeyEvent) => boolean): void;|NA|@ohos.inputmethodengine.d.ts| 40|删除|类名:KeyboardDelegate;<br>方法or属性:off(type: 'cursorContextChange', callback?: (x: number, y: number, height: number) => void): void;|NA|@ohos.inputmethodengine.d.ts| 41|删除|类名:KeyboardDelegate;<br>方法or属性:off(type: 'selectionChange', callback?: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void): void;|NA|@ohos.inputmethodengine.d.ts| 42|删除|类名:KeyboardDelegate;<br>方法or属性:off(type: 'textChange', callback?: (text: string) => void): void;|NA|@ohos.inputmethodengine.d.ts| 43|删除|类名:EditorAttribute;<br>方法or属性:readonly inputPattern: number;|NA|@ohos.inputmethodengine.d.ts| 44|删除|类名:EditorAttribute;<br>方法or属性:readonly enterKeyType: number;|NA|@ohos.inputmethodengine.d.ts| 45|删除|类名:KeyEvent;<br>方法or属性:readonly keyCode: number;|NA|@ohos.inputmethodengine.d.ts| 46|删除|类名:KeyEvent;<br>方法or属性:readonly keyAction: number;|NA|@ohos.inputmethodengine.d.ts| 47|删除|类名:systemTime;<br>方法or属性:function getCurrentTime(isNano?: boolean, callback: AsyncCallback\<number>): void;|NA|@ohos.systemTime.d.ts| 48|删除|类名:systemTime;<br>方法or属性:function getRealActiveTime(isNano?: boolean, callback: AsyncCallback\<number>): void;|NA|@ohos.systemTime.d.ts| 49|删除|类名:systemTime;<br>方法or属性:function getRealTime(isNano?: boolean, callback: AsyncCallback\<number>): void;|NA|@ohos.systemTime.d.ts| 50|删除|类名:wallpaper;<br>方法or属性:function screenshotLiveWallpaper(scale: number, pixelFormat: image.PixelMapFormat, callback: AsyncCallback\<image.PixelMap>): void;|NA|@ohos.wallpaper.d.ts| 51|删除|类名:wallpaper;<br>方法or属性:function screenshotLiveWallpaper(scale: number, pixelFormat: image.PixelMapFormat): Promise\<image.PixelMap>;|NA|@ohos.wallpaper.d.ts| 52|新增|NA|类名:inputMethod;<br>方法or属性:function getInputMethodSetting(): InputMethodSetting;|@ohos.inputMethod.d.ts| 53|新增|NA|类名:inputMethod;<br>方法or属性:function getInputMethodController(): InputMethodController;|@ohos.inputMethod.d.ts| 54|新增|NA|类名:inputMethod;<br>方法or属性:function getSetting(): InputMethodSetting;|@ohos.inputMethod.d.ts| 55|新增|NA|类名:inputMethod;<br>方法or属性:function getController(): InputMethodController;|@ohos.inputMethod.d.ts| 56|新增|NA|类名:inputMethod;<br>方法or属性:function switchInputMethod(target: InputMethodProperty, callback: AsyncCallback\<boolean>): void;|@ohos.inputMethod.d.ts| 57|新增|NA|类名:inputMethod;<br>方法or属性:function switchInputMethod(target: InputMethodProperty): Promise\<boolean>;|@ohos.inputMethod.d.ts| 58|新增|NA|类名:inputMethod;<br>方法or属性:function getCurrentInputMethod(): InputMethodProperty;|@ohos.inputMethod.d.ts| 59|新增|NA|类名:inputMethod;<br>方法or属性:function switchCurrentInputMethodSubtype(target: InputMethodSubtype, callback: AsyncCallback\<boolean>): void;|@ohos.inputMethod.d.ts| 60|新增|NA|类名:inputMethod;<br>方法or属性:function switchCurrentInputMethodSubtype(target: InputMethodSubtype): Promise\<boolean>;|@ohos.inputMethod.d.ts| 61|新增|NA|类名:inputMethod;<br>方法or属性:function getCurrentInputMethodSubtype(): InputMethodSubtype;|@ohos.inputMethod.d.ts| 62|新增|NA|类名:inputMethod;<br>方法or属性:function switchCurrentInputMethodAndSubtype(inputMethodProperty: InputMethodProperty, inputMethodSubtype: InputMethodSubtype, callback: AsyncCallback\<boolean>): void;|@ohos.inputMethod.d.ts| 63|新增|NA|类名:inputMethod;<br>方法or属性:function switchCurrentInputMethodAndSubtype(inputMethodProperty: InputMethodProperty, inputMethodSubtype: InputMethodSubtype): Promise\<boolean>;|@ohos.inputMethod.d.ts| 64|新增|NA|类名:InputMethodSetting;<br>方法or属性:on(type: 'imeChange', callback: (inputMethodProperty: InputMethodProperty, inputMethodSubtype: InputMethodSubtype) => void): void;|@ohos.inputMethod.d.ts| 65|新增|NA|类名:InputMethodSetting;<br>方法or属性:off(type: 'imeChange', callback?: (inputMethodProperty: InputMethodProperty, inputMethodSubtype: InputMethodSubtype) => void): void;|@ohos.inputMethod.d.ts| 66|新增|NA|类名:InputMethodSetting;<br>方法or属性:listInputMethodSubtype(inputMethodProperty: InputMethodProperty, callback: AsyncCallback\<Array\<InputMethodSubtype>>): void;|@ohos.inputMethod.d.ts| 67|新增|NA|类名:InputMethodSetting;<br>方法or属性:listInputMethodSubtype(inputMethodProperty: InputMethodProperty): Promise\<Array\<InputMethodSubtype>>;|@ohos.inputMethod.d.ts| 68|新增|NA|类名:InputMethodSetting;<br>方法or属性:listCurrentInputMethodSubtype(callback: AsyncCallback\<Array\<InputMethodSubtype>>): void;|@ohos.inputMethod.d.ts| 69|新增|NA|类名:InputMethodSetting;<br>方法or属性:listCurrentInputMethodSubtype(): Promise\<Array\<InputMethodSubtype>>;|@ohos.inputMethod.d.ts| 70|新增|NA|类名:InputMethodSetting;<br>方法or属性:getInputMethods(enable: boolean, callback: AsyncCallback\<Array\<InputMethodProperty>>): void;|@ohos.inputMethod.d.ts| 71|新增|NA|类名:InputMethodSetting;<br>方法or属性:getInputMethods(enable: boolean): Promise\<Array\<InputMethodProperty>>;|@ohos.inputMethod.d.ts| 72|新增|NA|类名:InputMethodSetting;<br>方法or属性:listInputMethod(callback: AsyncCallback\<Array\<InputMethodProperty>>): void;|@ohos.inputMethod.d.ts| 73|新增|NA|类名:InputMethodSetting;<br>方法or属性:listInputMethod(): Promise\<Array\<InputMethodProperty>>;|@ohos.inputMethod.d.ts| 74|新增|NA|类名:InputMethodSetting;<br>方法or属性:showOptionalInputMethods(callback: AsyncCallback\<boolean>): void;|@ohos.inputMethod.d.ts| 75|新增|NA|类名:InputMethodSetting;<br>方法or属性:showOptionalInputMethods(): Promise\<boolean>;|@ohos.inputMethod.d.ts| 76|新增|NA|类名:InputMethodSetting;<br>方法or属性:displayOptionalInputMethod(callback: AsyncCallback\<void>): void;|@ohos.inputMethod.d.ts| 77|新增|NA|类名:InputMethodSetting;<br>方法or属性:displayOptionalInputMethod(): Promise\<void>;|@ohos.inputMethod.d.ts| 78|新增|NA|类名:InputMethodController;<br>方法or属性:stopInputSession(callback: AsyncCallback\<boolean>): void;|@ohos.inputMethod.d.ts| 79|新增|NA|类名:InputMethodController;<br>方法or属性:stopInputSession(): Promise\<boolean>;|@ohos.inputMethod.d.ts| 80|新增|NA|类名:InputMethodController;<br>方法or属性:stopInput(callback: AsyncCallback\<boolean>): void;|@ohos.inputMethod.d.ts| 81|新增|NA|类名:InputMethodController;<br>方法or属性:stopInput(): Promise\<boolean>;|@ohos.inputMethod.d.ts| 82|新增|NA|类名:InputMethodController;<br>方法or属性:showSoftKeyboard(callback: AsyncCallback\<void>): void;|@ohos.inputMethod.d.ts| 83|新增|NA|类名:InputMethodController;<br>方法or属性:showSoftKeyboard():Promise\<void>;|@ohos.inputMethod.d.ts| 84|新增|NA|类名:InputMethodController;<br>方法or属性:hideSoftKeyboard(callback: AsyncCallback\<void>): void;|@ohos.inputMethod.d.ts| 85|新增|NA|类名:InputMethodController;<br>方法or属性:hideSoftKeyboard():Promise\<void>;|@ohos.inputMethod.d.ts| 86|新增|NA|类名:InputMethodProperty;<br>方法or属性:readonly packageName: string;|@ohos.inputMethod.d.ts| 87|新增|NA|类名:InputMethodProperty;<br>方法or属性:readonly methodId: string;|@ohos.inputMethod.d.ts| 88|新增|NA|类名:InputMethodProperty;<br>方法or属性:readonly name: string;|@ohos.inputMethod.d.ts| 89|新增|NA|类名:InputMethodProperty;<br>方法or属性:readonly id: string;|@ohos.inputMethod.d.ts| 90|新增|NA|类名:InputMethodProperty;<br>方法or属性:readonly label?: string;|@ohos.inputMethod.d.ts| 91|新增|NA|类名:InputMethodProperty;<br>方法or属性:readonly icon?: string;|@ohos.inputMethod.d.ts| 92|新增|NA|类名:InputMethodProperty;<br>方法or属性:readonly iconId?: number;|@ohos.inputMethod.d.ts| 93|新增|NA|类名:InputMethodProperty;<br>方法or属性:extra: object;|@ohos.inputMethod.d.ts| 94|新增|NA|类名:inputMethodEngine;<br>方法or属性:function getInputMethodAbility(): InputMethodAbility;|@ohos.inputMethodEngine.d.ts| 95|新增|NA|类名:inputMethodEngine;<br>方法or属性:function getInputMethodEngine(): InputMethodEngine;|@ohos.inputMethodEngine.d.ts| 96|新增|NA|类名:inputMethodEngine;<br>方法or属性:function getKeyboardDelegate(): KeyboardDelegate;|@ohos.inputMethodEngine.d.ts| 97|新增|NA|类名:inputMethodEngine;<br>方法or属性:function createKeyboardDelegate(): KeyboardDelegate;|@ohos.inputMethodEngine.d.ts| 98|新增|NA|类名:KeyboardController;<br>方法or属性:hide(callback: AsyncCallback\<void>): void;|@ohos.inputMethodEngine.d.ts| 99|新增|NA|类名:KeyboardController;<br>方法or属性:hide(): Promise\<void>;|@ohos.inputMethodEngine.d.ts| 100|新增|NA|类名:KeyboardController;<br>方法or属性:hideKeyboard(callback: AsyncCallback\<void>): void;|@ohos.inputMethodEngine.d.ts| 101|新增|NA|类名:KeyboardController;<br>方法or属性:hideKeyboard(): Promise\<void>;|@ohos.inputMethodEngine.d.ts| 102|新增|NA|类名:InputMethodEngine;<br>方法or属性:on(type: 'inputStart', callback: (kbController: KeyboardController, textInputClient: TextInputClient) => void): void;|@ohos.inputMethodEngine.d.ts| 103|新增|NA|类名:InputMethodEngine;<br>方法or属性:on(type: 'keyboardShow'\|'keyboardHide', callback: () => void): void;|@ohos.inputMethodEngine.d.ts| 104|新增|NA|类名:InputMethodAbility;<br>方法or属性:on(type: 'keyboardShow'\|'keyboardHide', callback: () => void): void;|@ohos.inputMethodEngine.d.ts| 105|新增|NA|类名:InputMethodEngine;<br>方法or属性:off(type: 'inputStart', callback?: (kbController: KeyboardController, textInputClient: TextInputClient) => void): void;|@ohos.inputMethodEngine.d.ts| 106|新增|NA|类名:InputMethodEngine;<br>方法or属性:off(type: 'keyboardShow'\|'keyboardHide', callback?: () => void): void;|@ohos.inputMethodEngine.d.ts| 107|新增|NA|类名:InputMethodAbility;<br>方法or属性:off(type: 'keyboardShow'\|'keyboardHide', callback?: () => void): void;|@ohos.inputMethodEngine.d.ts| 108|新增|NA|类名:InputMethodAbility;<br>方法or属性:on(type: 'inputStart', callback: (kbController: KeyboardController, inputClient: InputClient) => void): void;|@ohos.inputMethodEngine.d.ts| 109|新增|NA|类名:InputMethodAbility;<br>方法or属性:on(type: 'inputStop', callback: () => void): void;|@ohos.inputMethodEngine.d.ts| 110|新增|NA|类名:InputMethodAbility;<br>方法or属性:on(type: 'setCallingWindow', callback: (wid:number) => void): void;|@ohos.inputMethodEngine.d.ts| 111|新增|NA|类名:InputMethodAbility;<br>方法or属性:on(type: 'setSubtype', callback: (inputMethodSubtype: InputMethodSubtype) => void): void;|@ohos.inputMethodEngine.d.ts| 112|新增|NA|类名:InputMethodAbility;<br>方法or属性:off(type: 'inputStart', callback?: (kbController: KeyboardController, inputClient: InputClient) => void): void;|@ohos.inputMethodEngine.d.ts| 113|新增|NA|类名:InputMethodAbility;<br>方法or属性:off(type: 'inputStop', callback: () => void): void;|@ohos.inputMethodEngine.d.ts| 114|新增|NA|类名:InputMethodAbility;<br>方法or属性:off(type: 'setCallingWindow', callback: (wid:number) => void): void;|@ohos.inputMethodEngine.d.ts| 115|新增|NA|类名:InputMethodAbility;<br>方法or属性:off(type: 'setSubtype', callback?: (inputMethodSubtype: InputMethodSubtype) => void): void;|@ohos.inputMethodEngine.d.ts| 116|新增|NA|类名:TextInputClient;<br>方法or属性:sendKeyFunction(action: number, callback: AsyncCallback\<boolean>): void;|@ohos.inputMethodEngine.d.ts| 117|新增|NA|类名:InputClient;<br>方法or属性:sendKeyFunction(action: number, callback: AsyncCallback\<boolean>): void;|@ohos.inputMethodEngine.d.ts| 118|新增|NA|类名:TextInputClient;<br>方法or属性:sendKeyFunction(action: number): Promise\<boolean>;|@ohos.inputMethodEngine.d.ts| 119|新增|NA|类名:InputClient;<br>方法or属性:sendKeyFunction(action: number): Promise\<boolean>;|@ohos.inputMethodEngine.d.ts| 120|新增|NA|类名:TextInputClient;<br>方法or属性:deleteForward(length: number, callback: AsyncCallback\<boolean>): void;|@ohos.inputMethodEngine.d.ts| 121|新增|NA|类名:InputClient;<br>方法or属性:deleteForward(length: number, callback: AsyncCallback\<boolean>): void;|@ohos.inputMethodEngine.d.ts| 122|新增|NA|类名:TextInputClient;<br>方法or属性:deleteForward(length: number): Promise\<boolean>;|@ohos.inputMethodEngine.d.ts| 123|新增|NA|类名:InputClient;<br>方法or属性:deleteForward(length: number): Promise\<boolean>;|@ohos.inputMethodEngine.d.ts| 124|新增|NA|类名:TextInputClient;<br>方法or属性:deleteBackward(length: number, callback: AsyncCallback\<boolean>): void;|@ohos.inputMethodEngine.d.ts| 125|新增|NA|类名:InputClient;<br>方法or属性:deleteBackward(length: number, callback: AsyncCallback\<boolean>): void;|@ohos.inputMethodEngine.d.ts| 126|新增|NA|类名:TextInputClient;<br>方法or属性:deleteBackward(length: number): Promise\<boolean>;|@ohos.inputMethodEngine.d.ts| 127|新增|NA|类名:InputClient;<br>方法or属性:deleteBackward(length: number): Promise\<boolean>;|@ohos.inputMethodEngine.d.ts| 128|新增|NA|类名:TextInputClient;<br>方法or属性:insertText(text: string, callback: AsyncCallback\<boolean>): void;|@ohos.inputMethodEngine.d.ts| 129|新增|NA|类名:InputClient;<br>方法or属性:insertText(text: string, callback: AsyncCallback\<boolean>): void;|@ohos.inputMethodEngine.d.ts| 130|新增|NA|类名:TextInputClient;<br>方法or属性:insertText(text: string): Promise\<boolean>;|@ohos.inputMethodEngine.d.ts| 131|新增|NA|类名:InputClient;<br>方法or属性:insertText(text: string): Promise\<boolean>;|@ohos.inputMethodEngine.d.ts| 132|新增|NA|类名:TextInputClient;<br>方法or属性:getForward(length: number, callback: AsyncCallback\<string>): void;|@ohos.inputMethodEngine.d.ts| 133|新增|NA|类名:InputClient;<br>方法or属性:getForward(length: number, callback: AsyncCallback\<string>): void;|@ohos.inputMethodEngine.d.ts| 134|新增|NA|类名:TextInputClient;<br>方法or属性:getForward(length: number): Promise\<string>;|@ohos.inputMethodEngine.d.ts| 135|新增|NA|类名:InputClient;<br>方法or属性:getForward(length: number): Promise\<string>;|@ohos.inputMethodEngine.d.ts| 136|新增|NA|类名:TextInputClient;<br>方法or属性:getBackward(length: number, callback: AsyncCallback\<string>): void;|@ohos.inputMethodEngine.d.ts| 137|新增|NA|类名:InputClient;<br>方法or属性:getBackward(length: number, callback: AsyncCallback\<string>): void;|@ohos.inputMethodEngine.d.ts| 138|新增|NA|类名:TextInputClient;<br>方法or属性:getBackward(length: number): Promise\<string>;|@ohos.inputMethodEngine.d.ts| 139|新增|NA|类名:InputClient;<br>方法or属性:getBackward(length: number): Promise\<string>;|@ohos.inputMethodEngine.d.ts| 140|新增|NA|类名:TextInputClient;<br>方法or属性:getEditorAttribute(callback: AsyncCallback\<EditorAttribute>): void;|@ohos.inputMethodEngine.d.ts| 141|新增|NA|类名:InputClient;<br>方法or属性:getEditorAttribute(callback: AsyncCallback\<EditorAttribute>): void;|@ohos.inputMethodEngine.d.ts| 142|新增|NA|类名:TextInputClient;<br>方法or属性:getEditorAttribute(): Promise\<EditorAttribute>;|@ohos.inputMethodEngine.d.ts| 143|新增|NA|类名:InputClient;<br>方法or属性:getEditorAttribute(): Promise\<EditorAttribute>;|@ohos.inputMethodEngine.d.ts| 144|新增|NA|类名:InputClient;<br>方法or属性:moveCursor(direction: number, callback: AsyncCallback\<void>): void;|@ohos.inputMethodEngine.d.ts| 145|新增|NA|类名:InputClient;<br>方法or属性:moveCursor(direction: number): Promise\<void>;|@ohos.inputMethodEngine.d.ts| 146|新增|NA|类名:KeyboardDelegate;<br>方法or属性:on(type: 'keyDown'\|'keyUp', callback: (event: KeyEvent) => boolean): void;|@ohos.inputMethodEngine.d.ts| 147|新增|NA|类名:KeyboardDelegate;<br>方法or属性:on(type: 'cursorContextChange', callback: (x: number, y: number, height: number) => void): void;|@ohos.inputMethodEngine.d.ts| 148|新增|NA|类名:KeyboardDelegate;<br>方法or属性:on(type: 'selectionChange', callback: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void): void;|@ohos.inputMethodEngine.d.ts| 149|新增|NA|类名:KeyboardDelegate;<br>方法or属性:on(type: 'textChange', callback: (text: string) => void): void;|@ohos.inputMethodEngine.d.ts| 150|新增|NA|类名:KeyboardDelegate;<br>方法or属性:off(type: 'keyDown'\|'keyUp', callback?: (event: KeyEvent) => boolean): void;|@ohos.inputMethodEngine.d.ts| 151|新增|NA|类名:KeyboardDelegate;<br>方法or属性:off(type: 'cursorContextChange', callback?: (x: number, y: number, height: number) => void): void;|@ohos.inputMethodEngine.d.ts| 152|新增|NA|类名:KeyboardDelegate;<br>方法or属性:off(type: 'selectionChange', callback?: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void): void;|@ohos.inputMethodEngine.d.ts| 153|新增|NA|类名:KeyboardDelegate;<br>方法or属性:off(type: 'textChange', callback?: (text: string) => void): void;|@ohos.inputMethodEngine.d.ts| 154|新增|NA|类名:EditorAttribute;<br>方法or属性:readonly inputPattern: number;|@ohos.inputMethodEngine.d.ts| 155|新增|NA|类名:EditorAttribute;<br>方法or属性:readonly enterKeyType: number;|@ohos.inputMethodEngine.d.ts| 156|新增|NA|类名:KeyEvent;<br>方法or属性:readonly keyCode: number;|@ohos.inputMethodEngine.d.ts| 157|新增|NA|类名:KeyEvent;<br>方法or属性:readonly keyAction: number;|@ohos.inputMethodEngine.d.ts| 158|新增|NA|类名:InputMethodExtensionAbility;<br>方法or属性:context: InputMethodExtensionContext;|@ohos.InputMethodExtensionAbility.d.ts| 159|新增|NA|类名:InputMethodExtensionAbility;<br>方法or属性:onCreate(want: Want): void;|@ohos.InputMethodExtensionAbility.d.ts| 160|新增|NA|类名:InputMethodExtensionAbility;<br>方法or属性:onDestroy(): void;|@ohos.InputMethodExtensionAbility.d.ts| 161|新增|NA|类名:InputMethodExtensionContext;<br>方法or属性:destroy(callback: AsyncCallback\<void>): void;|@ohos.InputMethodExtensionContext.d.ts| 162|新增|NA|类名:InputMethodExtensionContext;<br>方法or属性:destroy(): Promise\<void>;|@ohos.InputMethodExtensionContext.d.ts| 163|新增|NA|类名:InputMethodSubtype;<br>方法or属性:readonly label?: string;|@ohos.InputMethodSubtype.d.ts| 164|新增|NA|类名:InputMethodSubtype;<br>方法or属性:readonly name: string;|@ohos.InputMethodSubtype.d.ts| 165|新增|NA|类名:InputMethodSubtype;<br>方法or属性:readonly id: string;|@ohos.InputMethodSubtype.d.ts| 166|新增|NA|类名:InputMethodSubtype;<br>方法or属性:readonly mode?: 'upper'\|'lower';|@ohos.InputMethodSubtype.d.ts| 167|新增|NA|类名:InputMethodSubtype;<br>方法or属性:readonly locale: string;|@ohos.InputMethodSubtype.d.ts| 168|新增|NA|类名:InputMethodSubtype;<br>方法or属性:readonly language: string;|@ohos.InputMethodSubtype.d.ts| 169|新增|NA|类名:InputMethodSubtype;<br>方法or属性:readonly icon?: string;|@ohos.InputMethodSubtype.d.ts| 170|新增|NA|类名:InputMethodSubtype;<br>方法or属性:readonly iconId?: number;|@ohos.InputMethodSubtype.d.ts| 171|新增|NA|类名:InputMethodSubtype;<br>方法or属性:extra: object;|@ohos.InputMethodSubtype.d.ts| 172|新增|NA|类名:pasteboard;<br>方法or属性:type ValueType = string \| image.PixelMap \| Want \| ArrayBuffer;|@ohos.pasteboard.d.ts| 173|新增|NA|类名:pasteboard;<br>方法or属性:function createData(mimeType: string, value: ValueType): PasteData;|@ohos.pasteboard.d.ts| 174|新增|NA|类名:pasteboard;<br>方法or属性:function createRecord(mimeType: string, value: ValueType): PasteDataRecord;|@ohos.pasteboard.d.ts| 175|新增|NA|类名:ShareOption;<br>方法or属性:INAPP|@ohos.pasteboard.d.ts| 176|新增|NA|类名:ShareOption;<br>方法or属性:LOCALDEVICE|@ohos.pasteboard.d.ts| 177|新增|NA|类名:ShareOption;<br>方法or属性:CROSSDEVICE|@ohos.pasteboard.d.ts| 178|新增|NA|类名:PasteDataProperty;<br>方法or属性:shareOption: ShareOption;|@ohos.pasteboard.d.ts| 179|新增|NA|类名:PasteDataRecord;<br>方法or属性:pixelMap: image.PixelMap;|@ohos.pasteboard.d.ts| 180|新增|NA|类名:PasteDataRecord;<br>方法or属性:data: {<br><br> [mimeType: string]: ArrayBuffer<br><br> }|@ohos.pasteboard.d.ts| 181|新增|NA|类名:PasteDataRecord;<br>方法or属性:toPlainText(): string;|@ohos.pasteboard.d.ts| 182|新增|NA|类名:PasteData;<br>方法or属性:addRecord(mimeType: string, value: ValueType): void;|@ohos.pasteboard.d.ts| 183|新增|NA|类名:PasteData;<br>方法or属性:getPrimaryPixelMap(): image.PixelMap;|@ohos.pasteboard.d.ts| 184|新增|NA|类名:PasteData;<br>方法or属性:setProperty(property: PasteDataProperty): void;|@ohos.pasteboard.d.ts| 185|新增|NA|类名:PasteData;<br>方法or属性:getRecord(index: number): PasteDataRecord;|@ohos.pasteboard.d.ts| 186|新增|NA|类名:PasteData;<br>方法or属性:hasType(mimeType: string): boolean;|@ohos.pasteboard.d.ts| 187|新增|NA|类名:PasteData;<br>方法or属性:removeRecord(index: number): void;|@ohos.pasteboard.d.ts| 188|新增|NA|类名:PasteData;<br>方法or属性:replaceRecord(index: number, record: PasteDataRecord): void;|@ohos.pasteboard.d.ts| 189|新增|NA|类名:SystemPasteboard;<br>方法or属性:clearData(callback: AsyncCallback\<void>): void;|@ohos.pasteboard.d.ts| 190|新增|NA|类名:SystemPasteboard;<br>方法or属性:clearData(): Promise\<void>;|@ohos.pasteboard.d.ts| 191|新增|NA|类名:SystemPasteboard;<br>方法or属性:getData(callback: AsyncCallback\<PasteData>): void;|@ohos.pasteboard.d.ts| 192|新增|NA|类名:SystemPasteboard;<br>方法or属性:getData(): Promise\<PasteData>;|@ohos.pasteboard.d.ts| 193|新增|NA|类名:SystemPasteboard;<br>方法or属性:hasData(callback: AsyncCallback\<boolean>): void;|@ohos.pasteboard.d.ts| 194|新增|NA|类名:SystemPasteboard;<br>方法or属性:hasData(): Promise\<boolean>;|@ohos.pasteboard.d.ts| 195|新增|NA|类名:SystemPasteboard;<br>方法or属性:setData(data: PasteData, callback: AsyncCallback\<void>): void;|@ohos.pasteboard.d.ts| 196|新增|NA|类名:SystemPasteboard;<br>方法or属性:setData(data: PasteData): Promise\<void>;|@ohos.pasteboard.d.ts| 197|新增|NA|类名:request;<br>方法or属性:function downloadFile(context: BaseContext, config: DownloadConfig, callback: AsyncCallback\<DownloadTask>): void;|@ohos.request.d.ts| 198|新增|NA|类名:request;<br>方法or属性:function downloadFile(context: BaseContext, config: DownloadConfig): Promise\<DownloadTask>;|@ohos.request.d.ts| 199|新增|NA|类名:request;<br>方法or属性:function uploadFile(context: BaseContext, config: UploadConfig, callback: AsyncCallback\<UploadTask>): void;|@ohos.request.d.ts| 200|新增|NA|类名:request;<br>方法or属性:function uploadFile(context: BaseContext, config: UploadConfig): Promise\<UploadTask>;|@ohos.request.d.ts| 201|新增|NA|类名:DownloadConfig;<br>方法or属性:background?: boolean;|@ohos.request.d.ts| 202|新增|NA|类名:DownloadTask;<br>方法or属性:delete(callback: AsyncCallback\<boolean>): void;|@ohos.request.d.ts| 203|新增|NA|类名:UploadTask;<br>方法or属性:delete(callback: AsyncCallback\<boolean>): void;|@ohos.request.d.ts| 204|新增|NA|类名:DownloadTask;<br>方法or属性:delete(): Promise\<boolean>;|@ohos.request.d.ts| 205|新增|NA|类名:UploadTask;<br>方法or属性:delete(): Promise\<boolean>;|@ohos.request.d.ts| 206|新增|NA|类名:DownloadTask;<br>方法or属性:suspend(callback: AsyncCallback\<boolean>): void;|@ohos.request.d.ts| 207|新增|NA|类名:DownloadTask;<br>方法or属性:suspend(): Promise\<boolean>;|@ohos.request.d.ts| 208|新增|NA|类名:DownloadTask;<br>方法or属性:restore(callback: AsyncCallback\<boolean>): void;|@ohos.request.d.ts| 209|新增|NA|类名:DownloadTask;<br>方法or属性:restore(): Promise\<boolean>;|@ohos.request.d.ts| 210|新增|NA|类名:DownloadTask;<br>方法or属性:getTaskInfo(callback: AsyncCallback\<DownloadInfo>): void;|@ohos.request.d.ts| 211|新增|NA|类名:DownloadTask;<br>方法or属性:getTaskInfo(): Promise\<DownloadInfo>;|@ohos.request.d.ts| 212|新增|NA|类名:DownloadTask;<br>方法or属性:getTaskMimeType(callback: AsyncCallback\<string>): void;|@ohos.request.d.ts| 213|新增|NA|类名:DownloadTask;<br>方法or属性:getTaskMimeType(): Promise\<string>;|@ohos.request.d.ts| 214|新增|NA|类名:TaskState;<br>方法or属性:path: string;|@ohos.request.d.ts| 215|新增|NA|类名:TaskState;<br>方法or属性:responseCode: number;|@ohos.request.d.ts| 216|新增|NA|类名:TaskState;<br>方法or属性:message: string;|@ohos.request.d.ts| 217|新增|NA|类名:UploadTask;<br>方法or属性:on(type:'complete' \| 'fail', callback: Callback\<Array\<TaskState>>): void;|@ohos.request.d.ts| 218|新增|NA|类名:UploadTask;<br>方法or属性:off(type:'complete' \| 'fail', callback?: Callback\<Array\<TaskState>>): void;|@ohos.request.d.ts| 219|新增|NA|类名:screenLock;<br>方法or属性:function isLocked(): boolean;|@ohos.screenLock.d.ts| 220|新增|NA|类名:screenLock;<br>方法or属性:function unlock(callback: AsyncCallback\<boolean>): void;|@ohos.screenLock.d.ts| 221|新增|NA|类名:screenLock;<br>方法or属性:function unlock():Promise\<boolean>;|@ohos.screenLock.d.ts| 222|新增|NA|类名:screenLock;<br>方法or属性:function lock(callback: AsyncCallback\<boolean>): void;|@ohos.screenLock.d.ts| 223|新增|NA|类名:screenLock;<br>方法or属性:function lock():Promise\<boolean>;|@ohos.screenLock.d.ts| 224|新增|NA|类名:screenLock;<br>方法or属性:type EventType =<br><br> 'beginWakeUp'<br><br> \| 'endWakeUp'<br><br> \| 'beginScreenOn'<br><br> \| 'endScreenOn'<br><br> \| 'beginScreenOff'<br><br> \| 'endScreenOff'<br><br> \| 'unlockScreen'<br><br> \| 'lockScreen'<br><br> \| 'beginExitAnimation'<br><br> \| 'beginSleep'<br><br> \| 'endSleep'<br><br> \| 'changeUser'<br><br> \| 'screenlockEnabled'<br><br> \| 'serviceRestart'|@ohos.screenLock.d.ts| 225|新增|NA|类名:screenLock;<br>方法or属性:function onSystemEvent(callback: Callback\<SystemEvent>): boolean;|@ohos.screenLock.d.ts| 226|新增|NA|类名:screenLock;<br>方法or属性:function sendScreenLockEvent(event: String, parameter: number, callback: AsyncCallback\<boolean>): void;|@ohos.screenLock.d.ts| 227|新增|NA|类名:screenLock;<br>方法or属性:function sendScreenLockEvent(event: String, parameter: number): Promise\<boolean>;|@ohos.screenLock.d.ts| 228|新增|NA|类名:SystemEvent;<br>方法or属性:eventType: EventType,|@ohos.screenLock.d.ts| 229|新增|NA|类名:SystemEvent;<br>方法or属性:params: string|@ohos.screenLock.d.ts| 230|新增|NA|类名:systemDateTime;<br>方法or属性:function setTime(time : number, callback : AsyncCallback\<void>) : void;|@ohos.systemDateTime.d.ts| 231|新增|NA|类名:systemDateTime;<br>方法or属性:function setTime(time : number) : Promise\<void>;|@ohos.systemDateTime.d.ts| 232|新增|NA|类名:systemDateTime;<br>方法or属性:function getCurrentTime(isNano: boolean, callback: AsyncCallback\<number>): void;|@ohos.systemDateTime.d.ts| 233|新增|NA|类名:systemDateTime;<br>方法or属性:function getCurrentTime(callback: AsyncCallback\<number>): void;|@ohos.systemDateTime.d.ts| 234|新增|NA|类名:systemDateTime;<br>方法or属性:function getCurrentTime(isNano?: boolean): Promise\<number>;|@ohos.systemDateTime.d.ts| 235|新增|NA|类名:systemDateTime;<br>方法or属性:function getRealActiveTime(isNano: boolean, callback: AsyncCallback\<number>): void;|@ohos.systemDateTime.d.ts| 236|新增|NA|类名:systemDateTime;<br>方法or属性:function getRealActiveTime(callback: AsyncCallback\<number>): void;|@ohos.systemDateTime.d.ts| 237|新增|NA|类名:systemDateTime;<br>方法or属性:function getRealActiveTime(isNano?: boolean): Promise\<number>;|@ohos.systemDateTime.d.ts| 238|新增|NA|类名:systemDateTime;<br>方法or属性:function getRealTime(isNano: boolean, callback: AsyncCallback\<number>): void;|@ohos.systemDateTime.d.ts| 239|新增|NA|类名:systemDateTime;<br>方法or属性:function getRealTime(callback: AsyncCallback\<number>): void;|@ohos.systemDateTime.d.ts| 240|新增|NA|类名:systemDateTime;<br>方法or属性:function getRealTime(isNano?: boolean): Promise\<number>;|@ohos.systemDateTime.d.ts| 241|新增|NA|类名:systemDateTime;<br>方法or属性:function setDate(date: Date, callback: AsyncCallback\<void>): void;|@ohos.systemDateTime.d.ts| 242|新增|NA|类名:systemDateTime;<br>方法or属性:function setDate(date: Date): Promise\<void>;|@ohos.systemDateTime.d.ts| 243|新增|NA|类名:systemDateTime;<br>方法or属性:function getDate(callback: AsyncCallback\<Date>): void;|@ohos.systemDateTime.d.ts| 244|新增|NA|类名:systemDateTime;<br>方法or属性:function getDate(): Promise\<Date>;|@ohos.systemDateTime.d.ts| 245|新增|NA|类名:systemDateTime;<br>方法or属性:function setTimezone(timezone: string, callback: AsyncCallback\<void>): void;|@ohos.systemDateTime.d.ts| 246|新增|NA|类名:systemDateTime;<br>方法or属性:function setTimezone(timezone: string): Promise\<void>;|@ohos.systemDateTime.d.ts| 247|新增|NA|类名:systemDateTime;<br>方法or属性:function getTimezone(callback: AsyncCallback\<string>): void;|@ohos.systemDateTime.d.ts| 248|新增|NA|类名:systemDateTime;<br>方法or属性:function getTimezone(): Promise\<string>;|@ohos.systemDateTime.d.ts| 249|新增|NA|类名:systemTime;<br>方法or属性:function getCurrentTime(isNano: boolean, callback: AsyncCallback\<number>): void;|@ohos.systemTime.d.ts| 250|新增|NA|类名:systemTime;<br>方法or属性:function getCurrentTime(callback: AsyncCallback\<number>): void;|@ohos.systemTime.d.ts| 251|新增|NA|类名:systemTime;<br>方法or属性:function getRealActiveTime(isNano: boolean, callback: AsyncCallback\<number>): void;|@ohos.systemTime.d.ts| 252|新增|NA|类名:systemTime;<br>方法or属性:function getRealActiveTime(callback: AsyncCallback\<number>): void;|@ohos.systemTime.d.ts| 253|新增|NA|类名:systemTime;<br>方法or属性:function getRealTime(isNano: boolean, callback: AsyncCallback\<number>): void;|@ohos.systemTime.d.ts| 254|新增|NA|类名:systemTime;<br>方法or属性:function getRealTime(callback: AsyncCallback\<number>): void;|@ohos.systemTime.d.ts| 255|新增|NA|类名:wallpaper;<br>方法or属性:function getColorsSync(wallpaperType: WallpaperType): Array\<RgbaColor>;|@ohos.wallpaper.d.ts| 256|新增|NA|类名:wallpaper;<br>方法or属性:function getMinHeightSync(): number;|@ohos.wallpaper.d.ts| 257|新增|NA|类名:wallpaper;<br>方法or属性:function getMinWidthSync(): number;|@ohos.wallpaper.d.ts| 258|新增|NA|类名:wallpaper;<br>方法or属性:function restore(wallpaperType: WallpaperType, callback: AsyncCallback\<void>): void;|@ohos.wallpaper.d.ts| 259|新增|NA|类名:wallpaper;<br>方法or属性:function restore(wallpaperType: WallpaperType): Promise\<void>;|@ohos.wallpaper.d.ts| 260|新增|NA|类名:wallpaper;<br>方法or属性:function setImage(source: string \| image.PixelMap, wallpaperType: WallpaperType, callback: AsyncCallback\<void>): void;|@ohos.wallpaper.d.ts| 261|新增|NA|类名:wallpaper;<br>方法or属性:function setImage(source: string \| image.PixelMap, wallpaperType: WallpaperType): Promise\<void>;|@ohos.wallpaper.d.ts| 262|新增|NA|类名:wallpaper;<br>方法or属性:function getImage(wallpaperType: WallpaperType, callback: AsyncCallback\<image.PixelMap>): void;|@ohos.wallpaper.d.ts| 263|新增|NA|类名:wallpaper;<br>方法or属性:function getImage(wallpaperType: WallpaperType): Promise\<image.PixelMap>;|@ohos.wallpaper.d.ts| 264|废弃版本有变化|类名:pasteboard;<br>方法or属性:function createHtmlData(htmlText: string): PasteData;<br>旧版本信息:|类名:pasteboard;<br>方法or属性:function createHtmlData(htmlText: string): PasteData;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#createData|@ohos.pasteboard.d.ts| 265|废弃版本有变化|类名:pasteboard;<br>方法or属性:function createWantData(want: Want): PasteData;<br>旧版本信息:|类名:pasteboard;<br>方法or属性:function createWantData(want: Want): PasteData;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#createData|@ohos.pasteboard.d.ts| 266|废弃版本有变化|类名:pasteboard;<br>方法or属性:function createPlainTextData(text: string): PasteData;<br>旧版本信息:|类名:pasteboard;<br>方法or属性:function createPlainTextData(text: string): PasteData;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#createData|@ohos.pasteboard.d.ts| 267|废弃版本有变化|类名:pasteboard;<br>方法or属性:function createUriData(uri: string): PasteData;<br>旧版本信息:|类名:pasteboard;<br>方法or属性:function createUriData(uri: string): PasteData;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#createData|@ohos.pasteboard.d.ts| 268|废弃版本有变化|类名:pasteboard;<br>方法or属性:function createHtmlTextRecord(htmlText: string): PasteDataRecord;<br>旧版本信息:|类名:pasteboard;<br>方法or属性:function createHtmlTextRecord(htmlText: string): PasteDataRecord;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#createRecord|@ohos.pasteboard.d.ts| 269|废弃版本有变化|类名:pasteboard;<br>方法or属性:function createWantRecord(want: Want): PasteDataRecord;<br>旧版本信息:|类名:pasteboard;<br>方法or属性:function createWantRecord(want: Want): PasteDataRecord;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#createRecord|@ohos.pasteboard.d.ts| 270|废弃版本有变化|类名:pasteboard;<br>方法or属性:function createPlainTextRecord(text: string): PasteDataRecord;<br>旧版本信息:|类名:pasteboard;<br>方法or属性:function createPlainTextRecord(text: string): PasteDataRecord;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#createRecord|@ohos.pasteboard.d.ts| 271|废弃版本有变化|类名:pasteboard;<br>方法or属性:function createUriRecord(uri: string): PasteDataRecord;<br>旧版本信息:|类名:pasteboard;<br>方法or属性:function createUriRecord(uri: string): PasteDataRecord;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#createRecord|@ohos.pasteboard.d.ts| 272|废弃版本有变化|类名:PasteDataRecord;<br>方法or属性:convertToText(callback: AsyncCallback\<string>): void;<br>旧版本信息:|类名:PasteDataRecord;<br>方法or属性:convertToText(callback: AsyncCallback\<string>): void;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#convertToTextV9|@ohos.pasteboard.d.ts| 273|废弃版本有变化|类名:PasteData;<br>方法or属性:addHtmlRecord(htmlText: string): void;<br>旧版本信息:|类名:PasteData;<br>方法or属性:addHtmlRecord(htmlText: string): void;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#addRecord|@ohos.pasteboard.d.ts| 274|废弃版本有变化|类名:PasteData;<br>方法or属性:addWantRecord(want: Want): void;<br>旧版本信息:|类名:PasteData;<br>方法or属性:addWantRecord(want: Want): void;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#addRecord|@ohos.pasteboard.d.ts| 275|废弃版本有变化|类名:PasteData;<br>方法or属性:addTextRecord(text: string): void;<br>旧版本信息:|类名:PasteData;<br>方法or属性:addTextRecord(text: string): void;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#addRecord|@ohos.pasteboard.d.ts| 276|废弃版本有变化|类名:PasteData;<br>方法or属性:addUriRecord(uri: string): void;<br>旧版本信息:|类名:PasteData;<br>方法or属性:addUriRecord(uri: string): void;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#addRecord|@ohos.pasteboard.d.ts| 277|废弃版本有变化|类名:PasteData;<br>方法or属性:getRecordAt(index: number): PasteDataRecord;<br>旧版本信息:|类名:PasteData;<br>方法or属性:getRecordAt(index: number): PasteDataRecord;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#getRecord|@ohos.pasteboard.d.ts| 278|废弃版本有变化|类名:PasteData;<br>方法or属性:hasMimeType(mimeType: string): boolean;<br>旧版本信息:|类名:PasteData;<br>方法or属性:hasMimeType(mimeType: string): boolean;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#hasType|@ohos.pasteboard.d.ts| 279|废弃版本有变化|类名:PasteData;<br>方法or属性:removeRecordAt(index: number): boolean;<br>旧版本信息:|类名:PasteData;<br>方法or属性:removeRecordAt(index: number): boolean;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#removeRecord|@ohos.pasteboard.d.ts| 280|废弃版本有变化|类名:PasteData;<br>方法or属性:replaceRecordAt(index: number, record: PasteDataRecord): boolean;<br>旧版本信息:|类名:PasteData;<br>方法or属性:replaceRecordAt(index: number, record: PasteDataRecord): boolean;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#replaceRecord|@ohos.pasteboard.d.ts| 281|废弃版本有变化|类名:SystemPasteboard;<br>方法or属性:clear(callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:SystemPasteboard;<br>方法or属性:clear(callback: AsyncCallback\<void>): void;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#clearData|@ohos.pasteboard.d.ts| 282|废弃版本有变化|类名:SystemPasteboard;<br>方法or属性:getPasteData(callback: AsyncCallback\<PasteData>): void;<br>旧版本信息:|类名:SystemPasteboard;<br>方法or属性:getPasteData(callback: AsyncCallback\<PasteData>): void;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#getData|@ohos.pasteboard.d.ts| 283|废弃版本有变化|类名:SystemPasteboard;<br>方法or属性:hasPasteData(callback: AsyncCallback\<boolean>): void;<br>旧版本信息:|类名:SystemPasteboard;<br>方法or属性:hasPasteData(callback: AsyncCallback\<boolean>): void;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#hasData|@ohos.pasteboard.d.ts| 284|废弃版本有变化|类名:SystemPasteboard;<br>方法or属性:setPasteData(data: PasteData, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:SystemPasteboard;<br>方法or属性:setPasteData(data: PasteData, callback: AsyncCallback\<void>): void;<br>新版本信息:9<br>代替接口: ohos.pasteboard.pasteboard#setData|@ohos.pasteboard.d.ts| 285|废弃版本有变化|类名:request;<br>方法or属性:function download(config: DownloadConfig, callback: AsyncCallback\<DownloadTask>): void;<br>旧版本信息:|类名:request;<br>方法or属性:function download(config: DownloadConfig, callback: AsyncCallback\<DownloadTask>): void;<br>新版本信息:9<br>代替接口: ohos.request.downloadFile|@ohos.request.d.ts| 286|废弃版本有变化|类名:request;<br>方法or属性:function download(config: DownloadConfig): Promise\<DownloadTask>;<br>旧版本信息:|类名:request;<br>方法or属性:function download(config: DownloadConfig): Promise\<DownloadTask>;<br>新版本信息:9,<br>代替接口: ohos.request.downloadFile|@ohos.request.d.ts| 287|废弃版本有变化|类名:request;<br>方法or属性:function upload(config: UploadConfig, callback: AsyncCallback\<UploadTask>): void;<br>旧版本信息:|类名:request;<br>方法or属性:function upload(config: UploadConfig, callback: AsyncCallback\<UploadTask>): void;<br>新版本信息:9<br>代替接口: ohos.request.uploadFile|@ohos.request.d.ts| 288|废弃版本有变化|类名:request;<br>方法or属性:function upload(config: UploadConfig): Promise\<UploadTask>;<br>旧版本信息:|类名:request;<br>方法or属性:function upload(config: UploadConfig): Promise\<UploadTask>;<br>新版本信息:9<br>代替接口: ohos.request.uploadFile|@ohos.request.d.ts| 289|废弃版本有变化|类名:DownloadTask;<br>方法or属性:remove(callback: AsyncCallback\<boolean>): void;<br>旧版本信息:|类名:DownloadTask;<br>方法or属性:remove(callback: AsyncCallback\<boolean>): void;<br>新版本信息:9<br>代替接口: ohos.request.delete|@ohos.request.d.ts| 290|废弃版本有变化|类名:UploadTask;<br>方法or属性:remove(callback: AsyncCallback\<boolean>): void;<br>旧版本信息:|类名:UploadTask;<br>方法or属性:remove(callback: AsyncCallback\<boolean>): void;<br>新版本信息:9<br>代替接口: ohos.request.delete|@ohos.request.d.ts| 291|废弃版本有变化|类名:DownloadTask;<br>方法or属性:remove(): Promise\<boolean>;<br>旧版本信息:|类名:DownloadTask;<br>方法or属性:remove(): Promise\<boolean>;<br>新版本信息:9<br>代替接口: ohos.request.delete|@ohos.request.d.ts| 292|废弃版本有变化|类名:UploadTask;<br>方法or属性:remove(): Promise\<boolean>;<br>旧版本信息:|类名:UploadTask;<br>方法or属性:remove(): Promise\<boolean>;<br>新版本信息:9<br>代替接口: ohos.request.delete|@ohos.request.d.ts| 293|废弃版本有变化|类名:DownloadTask;<br>方法or属性:pause(callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:DownloadTask;<br>方法or属性:pause(callback: AsyncCallback\<void>): void;<br>新版本信息:9<br>代替接口: ohos.request.suspend|@ohos.request.d.ts| 294|废弃版本有变化|类名:DownloadTask;<br>方法or属性:pause(): Promise\<void>;<br>旧版本信息:|类名:DownloadTask;<br>方法or属性:pause(): Promise\<void>;<br>新版本信息:9<br>代替接口: ohos.request.suspend|@ohos.request.d.ts| 295|废弃版本有变化|类名:DownloadTask;<br>方法or属性:resume(callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:DownloadTask;<br>方法or属性:resume(callback: AsyncCallback\<void>): void;<br>新版本信息:9<br>代替接口: ohos.request.restore|@ohos.request.d.ts| 296|废弃版本有变化|类名:DownloadTask;<br>方法or属性:resume(): Promise\<void>;<br>旧版本信息:|类名:DownloadTask;<br>方法or属性:resume(): Promise\<void>;<br>新版本信息:9<br>代替接口: ohos.request.restore|@ohos.request.d.ts| 297|废弃版本有变化|类名:DownloadTask;<br>方法or属性:query(callback: AsyncCallback\<DownloadInfo>): void;<br>旧版本信息:|类名:DownloadTask;<br>方法or属性:query(callback: AsyncCallback\<DownloadInfo>): void;<br>新版本信息:9<br>代替接口: ohos.request.getTaskInfo|@ohos.request.d.ts| 298|废弃版本有变化|类名:DownloadTask;<br>方法or属性:query(): Promise\<DownloadInfo>;<br>旧版本信息:|类名:DownloadTask;<br>方法or属性:query(): Promise\<DownloadInfo>;<br>新版本信息:9<br>代替接口: ohos.request.getTaskInfo|@ohos.request.d.ts| 299|废弃版本有变化|类名:DownloadTask;<br>方法or属性:queryMimeType(callback: AsyncCallback\<string>): void;<br>旧版本信息:|类名:DownloadTask;<br>方法or属性:queryMimeType(callback: AsyncCallback\<string>): void;<br>新版本信息:9<br>代替接口: ohos.request.getTaskMimeType|@ohos.request.d.ts| 300|废弃版本有变化|类名:DownloadTask;<br>方法or属性:queryMimeType(): Promise\<string>;<br>旧版本信息:|类名:DownloadTask;<br>方法or属性:queryMimeType(): Promise\<string>;<br>新版本信息:9<br>代替接口: ohos.request.getTaskMimeType|@ohos.request.d.ts| 301|废弃版本有变化|类名:screenLock;<br>方法or属性:function isScreenLocked(callback: AsyncCallback\<boolean>): void;<br>旧版本信息:|类名:screenLock;<br>方法or属性:function isScreenLocked(callback: AsyncCallback\<boolean>): void;<br>新版本信息:9<br>代替接口:|@ohos.screenLock.d.ts| 302|废弃版本有变化|类名:screenLock;<br>方法or属性:function isScreenLocked(): Promise\<boolean>;<br>旧版本信息:|类名:screenLock;<br>方法or属性:function isScreenLocked(): Promise\<boolean>;<br>新版本信息:9<br>代替接口:|@ohos.screenLock.d.ts| 303|废弃版本有变化|类名:screenLock;<br>方法or属性:function isSecureMode(callback: AsyncCallback\<boolean>): void;<br>旧版本信息:|类名:screenLock;<br>方法or属性:function isSecureMode(callback: AsyncCallback\<boolean>): void;<br>新版本信息:9<br>代替接口:|@ohos.screenLock.d.ts| 304|废弃版本有变化|类名:screenLock;<br>方法or属性:function isSecureMode(): Promise\<boolean>;<br>旧版本信息:|类名:screenLock;<br>方法or属性:function isSecureMode(): Promise\<boolean>;<br>新版本信息:9<br>代替接口:|@ohos.screenLock.d.ts| 305|废弃版本有变化|类名:screenLock;<br>方法or属性:function unlockScreen(callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:screenLock;<br>方法or属性:function unlockScreen(callback: AsyncCallback\<void>): void;<br>新版本信息:9<br>代替接口:|@ohos.screenLock.d.ts| 306|废弃版本有变化|类名:screenLock;<br>方法or属性:function unlockScreen():Promise\<void>;<br>旧版本信息:|类名:screenLock;<br>方法or属性:function unlockScreen():Promise\<void>;<br>新版本信息:9<br>代替接口:|@ohos.screenLock.d.ts| 307|废弃版本有变化|类名:systemTime;<br>方法or属性:declare systemTime<br>旧版本信息:|类名:systemTime;<br>方法or属性:declare systemTime<br>新版本信息:9<br>代替接口: ohos.systemDateTime|@ohos.systemTime.d.ts| 308|废弃版本有变化|类名:systemTime;<br>方法or属性:function setTime(time : number, callback : AsyncCallback\<void>) : void;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function setTime(time : number, callback : AsyncCallback\<void>) : void;<br>新版本信息:9<br>代替接口: ohos.systemDateTime|@ohos.systemTime.d.ts| 309|废弃版本有变化|类名:systemTime;<br>方法or属性:function setTime(time : number) : Promise\<void>;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function setTime(time : number) : Promise\<void>;<br>新版本信息:9<br>代替接口: ohos.systemDateTime|@ohos.systemTime.d.ts| 310|废弃版本有变化|类名:systemTime;<br>方法or属性:function getCurrentTime(isNano?: boolean): Promise\<number>;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function getCurrentTime(isNano?: boolean): Promise\<number>;<br>新版本信息:9<br>代替接口: ohos.systemDateTime/systemDateTime.getCurrentTime|@ohos.systemTime.d.ts| 311|废弃版本有变化|类名:systemTime;<br>方法or属性:function getRealActiveTime(isNano?: boolean): Promise\<number>;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function getRealActiveTime(isNano?: boolean): Promise\<number>;<br>新版本信息:9<br>代替接口: ohos.systemDateTime/systemDateTime.getRealActiveTime|@ohos.systemTime.d.ts| 312|废弃版本有变化|类名:systemTime;<br>方法or属性:function getRealTime(isNano?: boolean): Promise\<number>;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function getRealTime(isNano?: boolean): Promise\<number>;<br>新版本信息:9<br>代替接口: ohos.systemDateTime/systemDateTime.getRealTime|@ohos.systemTime.d.ts| 313|废弃版本有变化|类名:systemTime;<br>方法or属性:function setDate(date: Date, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function setDate(date: Date, callback: AsyncCallback\<void>): void;<br>新版本信息:9<br>代替接口: ohos.systemDateTime|@ohos.systemTime.d.ts| 314|废弃版本有变化|类名:systemTime;<br>方法or属性:function setDate(date: Date): Promise\<void>;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function setDate(date: Date): Promise\<void>;<br>新版本信息:9<br>代替接口: ohos.systemDateTime|@ohos.systemTime.d.ts| 315|废弃版本有变化|类名:systemTime;<br>方法or属性:function getDate(callback: AsyncCallback\<Date>): void;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function getDate(callback: AsyncCallback\<Date>): void;<br>新版本信息:9<br>代替接口: ohos.systemDateTime/systemDateTime.getDate|@ohos.systemTime.d.ts| 316|废弃版本有变化|类名:systemTime;<br>方法or属性:function getDate(): Promise\<Date>;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function getDate(): Promise\<Date>;<br>新版本信息:9<br>代替接口: ohos.systemDateTime/systemDateTime.getDate|@ohos.systemTime.d.ts| 317|废弃版本有变化|类名:systemTime;<br>方法or属性:function setTimezone(timezone: string, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function setTimezone(timezone: string, callback: AsyncCallback\<void>): void;<br>新版本信息:9<br>代替接口: ohos.systemDateTime|@ohos.systemTime.d.ts| 318|废弃版本有变化|类名:systemTime;<br>方法or属性:function setTimezone(timezone: string): Promise\<void>;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function setTimezone(timezone: string): Promise\<void>;<br>新版本信息:9<br>代替接口: ohos.systemDateTime|@ohos.systemTime.d.ts| 319|废弃版本有变化|类名:systemTime;<br>方法or属性:function getTimezone(callback: AsyncCallback\<string>): void;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function getTimezone(callback: AsyncCallback\<string>): void;<br>新版本信息:9<br>代替接口: ohos.systemDateTime/systemDateTime.getTimezone|@ohos.systemTime.d.ts| 320|废弃版本有变化|类名:systemTime;<br>方法or属性:function getTimezone(): Promise\<string>;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function getTimezone(): Promise\<string>;<br>新版本信息:9<br>代替接口: ohos.systemDateTime/systemDateTime.getTimezone|@ohos.systemTime.d.ts| 321|废弃版本有变化|类名:wallpaper;<br>方法or属性:function getColors(wallpaperType: WallpaperType, callback: AsyncCallback\<Array\<RgbaColor>>): void;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function getColors(wallpaperType: WallpaperType, callback: AsyncCallback\<Array\<RgbaColor>>): void;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 322|废弃版本有变化|类名:wallpaper;<br>方法or属性:function getColors(wallpaperType: WallpaperType): Promise\<Array\<RgbaColor>>;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function getColors(wallpaperType: WallpaperType): Promise\<Array\<RgbaColor>>;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 323|废弃版本有变化|类名:wallpaper;<br>方法or属性:function getId(wallpaperType: WallpaperType, callback: AsyncCallback\<number>): void;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function getId(wallpaperType: WallpaperType, callback: AsyncCallback\<number>): void;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 324|废弃版本有变化|类名:wallpaper;<br>方法or属性:function getId(wallpaperType: WallpaperType): Promise\<number>;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function getId(wallpaperType: WallpaperType): Promise\<number>;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 325|废弃版本有变化|类名:wallpaper;<br>方法or属性:function getFile(wallpaperType: WallpaperType, callback: AsyncCallback\<number>): void;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function getFile(wallpaperType: WallpaperType, callback: AsyncCallback\<number>): void;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 326|废弃版本有变化|类名:wallpaper;<br>方法or属性:function getFile(wallpaperType: WallpaperType): Promise\<number>;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function getFile(wallpaperType: WallpaperType): Promise\<number>;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 327|废弃版本有变化|类名:wallpaper;<br>方法or属性:function getMinHeight(callback: AsyncCallback\<number>): void;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function getMinHeight(callback: AsyncCallback\<number>): void;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 328|废弃版本有变化|类名:wallpaper;<br>方法or属性:function getMinHeight(): Promise\<number>;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function getMinHeight(): Promise\<number>;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 329|废弃版本有变化|类名:wallpaper;<br>方法or属性:function getMinWidth(callback: AsyncCallback\<number>): void;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function getMinWidth(callback: AsyncCallback\<number>): void;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 330|废弃版本有变化|类名:wallpaper;<br>方法or属性:function getMinWidth(): Promise\<number>;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function getMinWidth(): Promise\<number>;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 331|废弃版本有变化|类名:wallpaper;<br>方法or属性:function isChangePermitted(callback: AsyncCallback\<boolean>): void;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function isChangePermitted(callback: AsyncCallback\<boolean>): void;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 332|废弃版本有变化|类名:wallpaper;<br>方法or属性:function isChangePermitted(): Promise\<boolean>;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function isChangePermitted(): Promise\<boolean>;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 333|废弃版本有变化|类名:wallpaper;<br>方法or属性:function isOperationAllowed(callback: AsyncCallback\<boolean>): void;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function isOperationAllowed(callback: AsyncCallback\<boolean>): void;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 334|废弃版本有变化|类名:wallpaper;<br>方法or属性:function isOperationAllowed(): Promise\<boolean>;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function isOperationAllowed(): Promise\<boolean>;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 335|废弃版本有变化|类名:wallpaper;<br>方法or属性:function reset(wallpaperType: WallpaperType, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function reset(wallpaperType: WallpaperType, callback: AsyncCallback\<void>): void;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 336|废弃版本有变化|类名:wallpaper;<br>方法or属性:function reset(wallpaperType: WallpaperType): Promise\<void>;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function reset(wallpaperType: WallpaperType): Promise\<void>;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 337|废弃版本有变化|类名:wallpaper;<br>方法or属性:function setWallpaper(source: string \| image.PixelMap, wallpaperType: WallpaperType, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function setWallpaper(source: string \| image.PixelMap, wallpaperType: WallpaperType, callback: AsyncCallback\<void>): void;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 338|废弃版本有变化|类名:wallpaper;<br>方法or属性:function setWallpaper(source: string \| image.PixelMap, wallpaperType: WallpaperType): Promise\<void>;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function setWallpaper(source: string \| image.PixelMap, wallpaperType: WallpaperType): Promise\<void>;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 339|废弃版本有变化|类名:wallpaper;<br>方法or属性:function getPixelMap(wallpaperType: WallpaperType, callback: AsyncCallback\<image.PixelMap>): void;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function getPixelMap(wallpaperType: WallpaperType, callback: AsyncCallback\<image.PixelMap>): void;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 340|废弃版本有变化|类名:wallpaper;<br>方法or属性:function getPixelMap(wallpaperType: WallpaperType): Promise\<image.PixelMap>;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function getPixelMap(wallpaperType: WallpaperType): Promise\<image.PixelMap>;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 341|废弃版本有变化|类名:wallpaper;<br>方法or属性:function on(type: 'colorChange', callback: (colors: Array\<RgbaColor>, wallpaperType: WallpaperType) => void): void;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function on(type: 'colorChange', callback: (colors: Array\<RgbaColor>, wallpaperType: WallpaperType) => void): void;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 342|废弃版本有变化|类名:wallpaper;<br>方法or属性:function off(type: 'colorChange', callback?: (colors: Array\<RgbaColor>, wallpaperType: WallpaperType) => void): void;<br>旧版本信息:|类名:wallpaper;<br>方法or属性:function off(type: 'colorChange', callback?: (colors: Array\<RgbaColor>, wallpaperType: WallpaperType) => void): void;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 343|废弃版本有变化|类名:RgbaColor;<br>方法or属性:interface RgbaColor<br>旧版本信息:|类名:RgbaColor;<br>方法or属性:interface RgbaColor<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 344|废弃版本有变化|类名:RgbaColor;<br>方法or属性:red: number;<br>旧版本信息:|类名:RgbaColor;<br>方法or属性:red: number;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 345|废弃版本有变化|类名:RgbaColor;<br>方法or属性:green: number;<br>旧版本信息:|类名:RgbaColor;<br>方法or属性:green: number;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 346|废弃版本有变化|类名:RgbaColor;<br>方法or属性:blue: number;<br>旧版本信息:|类名:RgbaColor;<br>方法or属性:blue: number;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 347|废弃版本有变化|类名:RgbaColor;<br>方法or属性:alpha: number;<br>旧版本信息:|类名:RgbaColor;<br>方法or属性:alpha: number;<br>新版本信息:9<br>代替接口:|@ohos.wallpaper.d.ts| 348|废弃版本有变化|类名:UploadResponse;<br>方法or属性:export interface UploadResponse<br>旧版本信息:|类名:UploadResponse;<br>方法or属性:export interface UploadResponse<br>新版本信息:9,<br>代替接口: ohos.request|@system.request.d.ts| 349|废弃版本有变化|类名:UploadResponse;<br>方法or属性:code: number;<br>旧版本信息:|类名:UploadResponse;<br>方法or属性:code: number;<br>新版本信息:9<br>代替接口: ohos.request|@system.request.d.ts| 350|废弃版本有变化|类名:UploadResponse;<br>方法or属性:data: string;<br>旧版本信息:|类名:UploadResponse;<br>方法or属性:data: string;<br>新版本信息:9<br>代替接口: ohos.request|@system.request.d.ts| 351|废弃版本有变化|类名:UploadResponse;<br>方法or属性:headers: Object;<br>旧版本信息:|类名:UploadResponse;<br>方法or属性:headers: Object;<br>新版本信息:9<br>代替接口: ohos.request|@system.request.d.ts| 352|废弃版本有变化|类名:DownloadResponse;<br>方法or属性:export interface DownloadResponse<br>旧版本信息:|类名:DownloadResponse;<br>方法or属性:export interface DownloadResponse<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 353|废弃版本有变化|类名:DownloadResponse;<br>方法or属性:token: string;<br>旧版本信息:|类名:DownloadResponse;<br>方法or属性:token: string;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 354|废弃版本有变化|类名:OnDownloadCompleteOptions;<br>方法or属性:token: string;<br>旧版本信息:|类名:OnDownloadCompleteOptions;<br>方法or属性:token: string;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 355|废弃版本有变化|类名:OnDownloadCompleteResponse;<br>方法or属性:export interface OnDownloadCompleteResponse<br>旧版本信息:|类名:OnDownloadCompleteResponse;<br>方法or属性:export interface OnDownloadCompleteResponse<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 356|废弃版本有变化|类名:OnDownloadCompleteResponse;<br>方法or属性:uri: string;<br>旧版本信息:|类名:OnDownloadCompleteResponse;<br>方法or属性:uri: string;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 357|废弃版本有变化|类名:RequestFile;<br>方法or属性:uri: string;<br>旧版本信息:|类名:RequestFile;<br>方法or属性:uri: string;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 358|废弃版本有变化|类名:RequestFile;<br>方法or属性:export interface RequestFile<br>旧版本信息:|类名:RequestFile;<br>方法or属性:export interface RequestFile<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 359|废弃版本有变化|类名:RequestFile;<br>方法or属性:filename?: string;<br>旧版本信息:|类名:RequestFile;<br>方法or属性:filename?: string;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 360|废弃版本有变化|类名:DownloadRequestOptions;<br>方法or属性:filename?: string;<br>旧版本信息:|类名:DownloadRequestOptions;<br>方法or属性:filename?: string;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 361|废弃版本有变化|类名:RequestFile;<br>方法or属性:name?: string;<br>旧版本信息:|类名:RequestFile;<br>方法or属性:name?: string;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 362|废弃版本有变化|类名:RequestFile;<br>方法or属性:type?: string;<br>旧版本信息:|类名:RequestFile;<br>方法or属性:type?: string;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 363|废弃版本有变化|类名:RequestData;<br>方法or属性:export interface RequestData<br>旧版本信息:|类名:RequestData;<br>方法or属性:export interface RequestData<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 364|废弃版本有变化|类名:RequestData;<br>方法or属性:name: string;<br>旧版本信息:|类名:RequestData;<br>方法or属性:name: string;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 365|废弃版本有变化|类名:RequestData;<br>方法or属性:value: string;<br>旧版本信息:|类名:RequestData;<br>方法or属性:value: string;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 366|废弃版本有变化|类名:UploadRequestOptions;<br>方法or属性:export interface UploadRequestOptions<br>旧版本信息:|类名:UploadRequestOptions;<br>方法or属性:export interface UploadRequestOptions<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 367|废弃版本有变化|类名:UploadRequestOptions;<br>方法or属性:url: string;<br>旧版本信息:|类名:UploadRequestOptions;<br>方法or属性:url: string;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 368|废弃版本有变化|类名:DownloadRequestOptions;<br>方法or属性:url: string;<br>旧版本信息:|类名:DownloadRequestOptions;<br>方法or属性:url: string;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 369|废弃版本有变化|类名:UploadRequestOptions;<br>方法or属性:data?: Array\<RequestData>;<br>旧版本信息:|类名:UploadRequestOptions;<br>方法or属性:data?: Array\<RequestData>;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 370|废弃版本有变化|类名:UploadRequestOptions;<br>方法or属性:files: Array\<RequestFile>;<br>旧版本信息:|类名:UploadRequestOptions;<br>方法or属性:files: Array\<RequestFile>;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 371|废弃版本有变化|类名:UploadRequestOptions;<br>方法or属性:header?: Object;<br>旧版本信息:|类名:UploadRequestOptions;<br>方法or属性:header?: Object;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 372|废弃版本有变化|类名:UploadRequestOptions;<br>方法or属性:method?: string;<br>旧版本信息:|类名:UploadRequestOptions;<br>方法or属性:method?: string;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 373|废弃版本有变化|类名:UploadRequestOptions;<br>方法or属性:success?: (data: UploadResponse) => void;<br>旧版本信息:|类名:UploadRequestOptions;<br>方法or属性:success?: (data: UploadResponse) => void;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 374|废弃版本有变化|类名:UploadRequestOptions;<br>方法or属性:fail?: (data: any, code: number) => void;<br>旧版本信息:|类名:UploadRequestOptions;<br>方法or属性:fail?: (data: any, code: number) => void;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 375|废弃版本有变化|类名:DownloadRequestOptions;<br>方法or属性:fail?: (data: any, code: number) => void;<br>旧版本信息:|类名:DownloadRequestOptions;<br>方法or属性:fail?: (data: any, code: number) => void;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 376|废弃版本有变化|类名:OnDownloadCompleteOptions;<br>方法or属性:fail?: (data: any, code: number) => void;<br>旧版本信息:|类名:OnDownloadCompleteOptions;<br>方法or属性:fail?: (data: any, code: number) => void;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 377|废弃版本有变化|类名:UploadRequestOptions;<br>方法or属性:complete?: () => void;<br>旧版本信息:|类名:UploadRequestOptions;<br>方法or属性:complete?: () => void;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 378|废弃版本有变化|类名:DownloadRequestOptions;<br>方法or属性:complete?: () => void;<br>旧版本信息:|类名:DownloadRequestOptions;<br>方法or属性:complete?: () => void;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 379|废弃版本有变化|类名:OnDownloadCompleteOptions;<br>方法or属性:complete?: () => void;<br>旧版本信息:|类名:OnDownloadCompleteOptions;<br>方法or属性:complete?: () => void;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 380|废弃版本有变化|类名:DownloadRequestOptions;<br>方法or属性:export interface DownloadRequestOptions<br>旧版本信息:|类名:DownloadRequestOptions;<br>方法or属性:export interface DownloadRequestOptions<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 381|废弃版本有变化|类名:DownloadRequestOptions;<br>方法or属性:header?: string;<br>旧版本信息:|类名:DownloadRequestOptions;<br>方法or属性:header?: string;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 382|废弃版本有变化|类名:DownloadRequestOptions;<br>方法or属性:description?: string;<br>旧版本信息:|类名:DownloadRequestOptions;<br>方法or属性:description?: string;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 383|废弃版本有变化|类名:DownloadRequestOptions;<br>方法or属性:success?: (data: DownloadResponse) => void;<br>旧版本信息:|类名:DownloadRequestOptions;<br>方法or属性:success?: (data: DownloadResponse) => void;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 384|废弃版本有变化|类名:OnDownloadCompleteOptions;<br>方法or属性:export interface OnDownloadCompleteOptions<br>旧版本信息:|类名:OnDownloadCompleteOptions;<br>方法or属性:export interface OnDownloadCompleteOptions<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 385|废弃版本有变化|类名:OnDownloadCompleteOptions;<br>方法or属性:success?: (data: OnDownloadCompleteResponse) => void;<br>旧版本信息:|类名:OnDownloadCompleteOptions;<br>方法or属性:success?: (data: OnDownloadCompleteResponse) => void;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 386|废弃版本有变化|类名:Request;<br>方法or属性:export default class Request<br>旧版本信息:|类名:Request;<br>方法or属性:export default class Request<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 387|废弃版本有变化|类名:Request;<br>方法or属性:static upload(options: UploadRequestOptions): void;<br>旧版本信息:|类名:Request;<br>方法or属性:static upload(options: UploadRequestOptions): void;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 388|废弃版本有变化|类名:Request;<br>方法or属性:static download(options: DownloadRequestOptions): void;<br>旧版本信息:|类名:Request;<br>方法or属性:static download(options: DownloadRequestOptions): void;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 389|废弃版本有变化|类名:Request;<br>方法or属性:static onDownloadComplete(options: OnDownloadCompleteOptions): void;<br>旧版本信息:|类名:Request;<br>方法or属性:static onDownloadComplete(options: OnDownloadCompleteOptions): void;<br>新版本信息:9<br>代替接口:|@system.request.d.ts| 390|新增(错误码)|类名:SystemPasteboard;<br>方法or属性:on(type: 'update', callback: () => void): void;<br>旧版本信息:|类名:SystemPasteboard;<br>方法or属性:on(type: 'update', callback: () => void): void;<br>新版本信息:401|@ohos.pasteboard.d.ts| 391|新增(错误码)|类名:SystemPasteboard;<br>方法or属性:off(type: 'update', callback?: () => void): void;<br>旧版本信息:|类名:SystemPasteboard;<br>方法or属性:off(type: 'update', callback?: () => void): void;<br>新版本信息:401|@ohos.pasteboard.d.ts| 392|新增(错误码)|类名:systemTime;<br>方法or属性:function setTime(time : number, callback : AsyncCallback\<void>) : void;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function setTime(time : number, callback : AsyncCallback\<void>) : void;<br>新版本信息:-1|@ohos.systemTime.d.ts| 393|新增(错误码)|类名:systemTime;<br>方法or属性:function setTime(time : number) : Promise\<void>;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function setTime(time : number) : Promise\<void>;<br>新版本信息:-1|@ohos.systemTime.d.ts| 394|新增(错误码)|类名:systemTime;<br>方法or属性:function getCurrentTime(isNano?: boolean): Promise\<number>;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function getCurrentTime(isNano?: boolean): Promise\<number>;<br>新版本信息:-1|@ohos.systemTime.d.ts| 395|新增(错误码)|类名:systemTime;<br>方法or属性:function getRealActiveTime(isNano?: boolean): Promise\<number>;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function getRealActiveTime(isNano?: boolean): Promise\<number>;<br>新版本信息:-1|@ohos.systemTime.d.ts| 396|新增(错误码)|类名:systemTime;<br>方法or属性:function getRealTime(isNano?: boolean): Promise\<number>;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function getRealTime(isNano?: boolean): Promise\<number>;<br>新版本信息:-1|@ohos.systemTime.d.ts| 397|新增(错误码)|类名:systemTime;<br>方法or属性:function setDate(date: Date, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function setDate(date: Date, callback: AsyncCallback\<void>): void;<br>新版本信息:-1|@ohos.systemTime.d.ts| 398|新增(错误码)|类名:systemTime;<br>方法or属性:function setDate(date: Date): Promise\<void>;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function setDate(date: Date): Promise\<void>;<br>新版本信息:-1|@ohos.systemTime.d.ts| 399|新增(错误码)|类名:systemTime;<br>方法or属性:function getDate(callback: AsyncCallback\<Date>): void;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function getDate(callback: AsyncCallback\<Date>): void;<br>新版本信息:-1|@ohos.systemTime.d.ts| 400|新增(错误码)|类名:systemTime;<br>方法or属性:function getDate(): Promise\<Date>;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function getDate(): Promise\<Date>;<br>新版本信息:-1|@ohos.systemTime.d.ts| 401|新增(错误码)|类名:systemTime;<br>方法or属性:function setTimezone(timezone: string, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function setTimezone(timezone: string, callback: AsyncCallback\<void>): void;<br>新版本信息:-1|@ohos.systemTime.d.ts| 402|新增(错误码)|类名:systemTime;<br>方法or属性:function setTimezone(timezone: string): Promise\<void>;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function setTimezone(timezone: string): Promise\<void>;<br>新版本信息:-1|@ohos.systemTime.d.ts| 403|新增(错误码)|类名:systemTime;<br>方法or属性:function getTimezone(callback: AsyncCallback\<string>): void;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function getTimezone(callback: AsyncCallback\<string>): void;<br>新版本信息:-1|@ohos.systemTime.d.ts| 404|新增(错误码)|类名:systemTime;<br>方法or属性:function getTimezone(): Promise\<string>;<br>旧版本信息:|类名:systemTime;<br>方法or属性:function getTimezone(): Promise\<string>;<br>新版本信息:-1|@ohos.systemTime.d.ts| 405|新增(错误码)|类名:systemTimer;<br>方法or属性:function createTimer(options: TimerOptions, callback: AsyncCallback\<number>): void;<br>旧版本信息:|类名:systemTimer;<br>方法or属性:function createTimer(options: TimerOptions, callback: AsyncCallback\<number>): void;<br>新版本信息:202,401|@ohos.systemTimer.d.ts| 406|新增(错误码)|类名:systemTimer;<br>方法or属性:function createTimer(options: TimerOptions): Promise\<number>;<br>旧版本信息:|类名:systemTimer;<br>方法or属性:function createTimer(options: TimerOptions): Promise\<number>;<br>新版本信息:202,401|@ohos.systemTimer.d.ts| 407|新增(错误码)|类名:systemTimer;<br>方法or属性:function startTimer(timer: number, triggerTime: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:systemTimer;<br>方法or属性:function startTimer(timer: number, triggerTime: number, callback: AsyncCallback\<void>): void;<br>新版本信息:202,401|@ohos.systemTimer.d.ts| 408|新增(错误码)|类名:systemTimer;<br>方法or属性:function startTimer(timer: number, triggerTime: number): Promise\<void>;<br>旧版本信息:|类名:systemTimer;<br>方法or属性:function startTimer(timer: number, triggerTime: number): Promise\<void>;<br>新版本信息:202,401|@ohos.systemTimer.d.ts| 409|新增(错误码)|类名:systemTimer;<br>方法or属性:function stopTimer(timer: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:systemTimer;<br>方法or属性:function stopTimer(timer: number, callback: AsyncCallback\<void>): void;<br>新版本信息:202,401|@ohos.systemTimer.d.ts| 410|新增(错误码)|类名:systemTimer;<br>方法or属性:function stopTimer(timer: number): Promise\<void>;<br>旧版本信息:|类名:systemTimer;<br>方法or属性:function stopTimer(timer: number): Promise\<void>;<br>新版本信息:202,401|@ohos.systemTimer.d.ts| 411|新增(错误码)|类名:systemTimer;<br>方法or属性:function destroyTimer(timer: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:systemTimer;<br>方法or属性:function destroyTimer(timer: number, callback: AsyncCallback\<void>): void;<br>新版本信息:202,401|@ohos.systemTimer.d.ts| 412|新增(错误码)|类名:systemTimer;<br>方法or属性:function destroyTimer(timer: number): Promise\<void>;<br>旧版本信息:|类名:systemTimer;<br>方法or属性:function destroyTimer(timer: number): Promise\<void>;<br>新版本信息:202,401|@ohos.systemTimer.d.ts| 413|访问级别有变化|类名:systemTimer;<br>方法or属性:function createTimer(options: TimerOptions, callback: AsyncCallback\<number>): void;<br>旧版本信息:|类名:systemTimer;<br>方法or属性:function createTimer(options: TimerOptions, callback: AsyncCallback\<number>): void;<br>新版本信息:systemapi|@ohos.systemTimer.d.ts| 414|访问级别有变化|类名:systemTimer;<br>方法or属性:function createTimer(options: TimerOptions): Promise\<number>;<br>旧版本信息:|类名:systemTimer;<br>方法or属性:function createTimer(options: TimerOptions): Promise\<number>;<br>新版本信息:systemapi|@ohos.systemTimer.d.ts| 415|访问级别有变化|类名:systemTimer;<br>方法or属性:function startTimer(timer: number, triggerTime: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:systemTimer;<br>方法or属性:function startTimer(timer: number, triggerTime: number, callback: AsyncCallback\<void>): void;<br>新版本信息:systemapi|@ohos.systemTimer.d.ts| 416|访问级别有变化|类名:systemTimer;<br>方法or属性:function startTimer(timer: number, triggerTime: number): Promise\<void>;<br>旧版本信息:|类名:systemTimer;<br>方法or属性:function startTimer(timer: number, triggerTime: number): Promise\<void>;<br>新版本信息:systemapi|@ohos.systemTimer.d.ts| 417|访问级别有变化|类名:systemTimer;<br>方法or属性:function stopTimer(timer: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:systemTimer;<br>方法or属性:function stopTimer(timer: number, callback: AsyncCallback\<void>): void;<br>新版本信息:systemapi|@ohos.systemTimer.d.ts| 418|访问级别有变化|类名:systemTimer;<br>方法or属性:function stopTimer(timer: number): Promise\<void>;<br>旧版本信息:|类名:systemTimer;<br>方法or属性:function stopTimer(timer: number): Promise\<void>;<br>新版本信息:systemapi|@ohos.systemTimer.d.ts| 419|访问级别有变化|类名:systemTimer;<br>方法or属性:function destroyTimer(timer: number, callback: AsyncCallback\<void>): void;<br>旧版本信息:|类名:systemTimer;<br>方法or属性:function destroyTimer(timer: number, callback: AsyncCallback\<void>): void;<br>新版本信息:systemapi|@ohos.systemTimer.d.ts| 420|访问级别有变化|类名:systemTimer;<br>方法or属性:function destroyTimer(timer: number): Promise\<void>;<br>旧版本信息:|类名:systemTimer;<br>方法or属性:function destroyTimer(timer: number): Promise\<void>;<br>新版本信息:systemapi|@ohos.systemTimer.d.ts| 421|访问级别有变化|类名:TimerOptions;<br>方法or属性:interface TimerOptions<br>旧版本信息:|类名:TimerOptions;<br>方法or属性:interface TimerOptions<br>新版本信息:systemapi|@ohos.systemTimer.d.ts| 422|访问级别有变化|类名:TimerOptions;<br>方法or属性:type: number;<br>旧版本信息:|类名:TimerOptions;<br>方法or属性:type: number;<br>新版本信息:systemapi|@ohos.systemTimer.d.ts| 423|访问级别有变化|类名:TimerOptions;<br>方法or属性:repeat: boolean;<br>旧版本信息:|类名:TimerOptions;<br>方法or属性:repeat: boolean;<br>新版本信息:systemapi|@ohos.systemTimer.d.ts| 424|访问级别有变化|类名:TimerOptions;<br>方法or属性:interval?: number;<br>旧版本信息:|类名:TimerOptions;<br>方法or属性:interval?: number;<br>新版本信息:systemapi|@ohos.systemTimer.d.ts| 425|访问级别有变化|类名:TimerOptions;<br>方法or属性:wantAgent?: WantAgent;<br>旧版本信息:|类名:TimerOptions;<br>方法or属性:wantAgent?: WantAgent;<br>新版本信息:systemapi|@ohos.systemTimer.d.ts| 426|访问级别有变化|类名:TimerOptions;<br>方法or属性:callback?: () => void;<br>旧版本信息:|类名:TimerOptions;<br>方法or属性:callback?: () => void;<br>新版本信息:systemapi|@ohos.systemTimer.d.ts| 427|权限有变化|类名:DownloadTask;<br>方法or属性:interface DownloadTask<br>旧版本信息:|类名:DownloadTask;<br>方法or属性:interface DownloadTask<br>新版本信息:ohos.permission.INTERNET|@ohos.request.d.ts| 428|权限有变化|类名:UploadTask;<br>方法or属性:interface UploadTask<br>旧版本信息:|类名:UploadTask;<br>方法or属性:interface UploadTask<br>新版本信息:ohos.permission.INTERNET|@ohos.request.d.ts| 429|权限有变化|类名:wallpaper;<br>方法or属性:function getFile(wallpaperType: WallpaperType, callback: AsyncCallback\<number>): void;<br>旧版本信息:ohos.permission.GET_WALLPAPER,ohos.permission.READ_USER_STORAGE|类名:wallpaper;<br>方法or属性:function getFile(wallpaperType: WallpaperType, callback: AsyncCallback\<number>): void;<br>新版本信息:ohos.permission.GET_WALLPAPER|@ohos.wallpaper.d.ts| 430|权限有变化|类名:wallpaper;<br>方法or属性:function getFile(wallpaperType: WallpaperType): Promise\<number>;<br>旧版本信息:ohos.permission.GET_WALLPAPER,ohos.permission.READ_USER_STORAGE|类名:wallpaper;<br>方法or属性:function getFile(wallpaperType: WallpaperType): Promise\<number>;<br>新版本信息:ohos.permission.GET_WALLPAPER|@ohos.wallpaper.d.ts| 431|权限有变化|类名:wallpaper;<br>方法or属性:function getPixelMap(wallpaperType: WallpaperType, callback: AsyncCallback\<image.PixelMap>): void;<br>旧版本信息:ohos.permission.GET_WALLPAPER,ohos.permission.READ_USER_STORAGE|类名:wallpaper;<br>方法or属性:function getPixelMap(wallpaperType: WallpaperType, callback: AsyncCallback\<image.PixelMap>): void;<br>新版本信息:ohos.permission.GET_WALLPAPER|@ohos.wallpaper.d.ts| 432|权限有变化|类名:wallpaper;<br>方法or属性:function getPixelMap(wallpaperType: WallpaperType): Promise\<image.PixelMap>;<br>旧版本信息:ohos.permission.GET_WALLPAPER,ohos.permission.READ_USER_STORAGE|类名:wallpaper;<br>方法or属性:function getPixelMap(wallpaperType: WallpaperType): Promise\<image.PixelMap>;<br>新版本信息:ohos.permission.GET_WALLPAPER|@ohos.wallpaper.d.ts| 433|model有变化|类名:request;<br>方法or属性:function download(config: DownloadConfig, callback: AsyncCallback\<DownloadTask>): void;<br>旧版本信息:|类名:request;<br>方法or属性:function download(config: DownloadConfig, callback: AsyncCallback\<DownloadTask>): void;<br>新版本信息:FAModelOnly|@ohos.request.d.ts| 434|model有变化|类名:request;<br>方法or属性:function download(config: DownloadConfig): Promise\<DownloadTask>;<br>旧版本信息:|类名:request;<br>方法or属性:function download(config: DownloadConfig): Promise\<DownloadTask>;<br>新版本信息:FAModelOnly|@ohos.request.d.ts| 435|model有变化|类名:request;<br>方法or属性:function upload(config: UploadConfig, callback: AsyncCallback\<UploadTask>): void;<br>旧版本信息:|类名:request;<br>方法or属性:function upload(config: UploadConfig, callback: AsyncCallback\<UploadTask>): void;<br>新版本信息:FAModelOnly|@ohos.request.d.ts| 436|model有变化|类名:request;<br>方法or属性:function upload(config: UploadConfig): Promise\<UploadTask>;<br>旧版本信息:|类名:request;<br>方法or属性:function upload(config: UploadConfig): Promise\<UploadTask>;<br>新版本信息:FAModelOnly|@ohos.request.d.ts| 437