diff --git a/api/@internal/ets/lifecycle.d.ts b/api/@internal/ets/lifecycle.d.ts index 2fda3afdeccc0be6c155acdf3a35ae5ad4caa9b3..e16e00d673f32b0ecc305677cfeae3b6622edc12 100644 --- a/api/@internal/ets/lifecycle.d.ts +++ b/api/@internal/ets/lifecycle.d.ts @@ -390,17 +390,6 @@ export declare interface LifecycleData { */ delete?(uri: string, predicates: dataAbility.DataAbilityPredicates): number; - /** - * Performs batch operations on the database. This method should be implemented by a Data ability. - * - * @devices phone, tablet - * @since 7 - * @sysCap AAFwk - * @param ops Indicates the data operation list, which can contain multiple operations on the database. - * @return Returns the result of each operation, in array. - */ - executeBatch?(ops: Array): Array; - /** * Converts the given {@code uri} that refer to the Data ability into a normalized URI. A normalized URI can be * used across devices, persisted, backed up, and restored. It can refer to the same item in the Data ability @@ -483,19 +472,6 @@ export declare interface LifecycleData { */ getFileTypes?(uri: string, mimeTypeFilter: string): Array; - /** - * Defines a method in this Data ability (implementation depending on child classes). - * - * @devices phone, tablet - * @since 7 - * @sysCap AAFwk - * @param method Indicates the method name. - * @param arg Indicates the parameter transferred by the method. - * @param extras Indicates the parameter transferred by the method. - * @return Returns the result of the method. - */ - call?(method: string, arg: string, extras: PacMap): PacMap; - /** * Called to carry {@code AbilityInfo} to this ability after the ability is initialized. *