From f487f134d428dee2b9ab74d7717afedfb0e87ca1 Mon Sep 17 00:00:00 2001 From: lichenlong1 Date: Thu, 13 Jan 2022 11:10:09 +0800 Subject: [PATCH] =?UTF-8?q?description=20=EF=BC=9A=20fix=20wrong=20version?= =?UTF-8?q?=20description?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: lichenlong1 --- api/@ohos.data.rdb.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/@ohos.data.rdb.d.ts b/api/@ohos.data.rdb.d.ts index eb0813c4ac..1bdf30f07b 100644 --- a/api/@ohos.data.rdb.d.ts +++ b/api/@ohos.data.rdb.d.ts @@ -216,13 +216,13 @@ declare namespace rdb { * @permission N/A */ interface StoreConfig { + name: string; /** - * Indicates the name of the database file + * Indicates the encryptKey of the database file * * @since 8 * @sysCap SystemCapability.Data.DATA_APPDATAMGR */ - name: string; encryptKey: Uint8Array; } -- Gitee