diff --git a/zh-cn/application-dev/reference/apis/js-apis-appAccount.md b/zh-cn/application-dev/reference/apis/js-apis-appAccount.md index ad0f798a0faa5f2dba8cf5b81641c3c99ebf7059..100b42bec2451f936f64db7bd907abb5c87bb888 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-appAccount.md +++ b/zh-cn/application-dev/reference/apis/js-apis-appAccount.md @@ -1509,7 +1509,7 @@ auth(name: string, owner: string, authType: string, options: {[key: string]: Obj } let options: Record = { - password: 'xxxx', + 'password': 'xxxx', }; try { appAccountManager.auth('LiSi', 'com.example.accountjsdemo', 'getSocialData', options, { @@ -4919,7 +4919,7 @@ onRequestRedirected: (request: Want) => void } auth(name: string, authType: string, - options: { [key: string]: Object }, callback: account_appAccount.AuthCallback) { + options: Record, callback: account_appAccount.AuthCallback) { let result: account_appAccount.AuthResult = { account: { name: 'Lisi', @@ -5020,7 +5020,7 @@ onRequestRedirected: (request: Want) => void ```js class MyAuthenticator extends account_appAccount.Authenticator { addAccountImplicitly(authType: string, callerBundleName: string, - options: { [key: string]: Object }, callback: account_appAccount.AuthenticatorCallback) { + options: Record, callback: account_appAccount.AuthenticatorCallback) { let want: Want = { bundleName: 'com.example.accountjsdemo', abilityName: 'com.example.accountjsdemo.LoginAbility', @@ -5029,7 +5029,7 @@ onRequestRedirected: (request: Want) => void } authenticate(name: string, authType: string, callerBundleName: string, - options: { [key: string]: Object }, callback: account_appAccount.AuthenticatorCallback) { + options: Record, callback: account_appAccount.AuthenticatorCallback) { callback.onResult(account_appAccount.ResultCode.SUCCESS, { name: name, authType: authType, @@ -5196,7 +5196,7 @@ getRemoteObject(): rpc.RemoteObject; class MyAuthenticator extends account_appAccount.Authenticator { addAccountImplicitly(authType: string, callerBundleName: string, - options: { [key: string]: Object }, callback: account_appAccount.AuthenticatorCallback) { + options: Record, callback: account_appAccount.AuthenticatorCallback) { let want: Want = { bundleName: 'com.example.accountjsdemo', abilityName: 'com.example.accountjsdemo.LoginAbility', @@ -5205,7 +5205,7 @@ getRemoteObject(): rpc.RemoteObject; } authenticate(name: string, authType: string, callerBundleName: string, - options: { [key: string]: Object }, callback: account_appAccount.AuthenticatorCallback) { + options: Record, callback: account_appAccount.AuthenticatorCallback) { callback.onResult(account_appAccount.ResultCode.SUCCESS, { name: name, authType: authType, diff --git a/zh-cn/application-dev/reference/apis/js-apis-osAccount.md b/zh-cn/application-dev/reference/apis/js-apis-osAccount.md index c99064305ebd3121b71dc979402b1c0c4ff5ada0..adde3dcde0de3f2240a9c0e4ea01b1c469e3581f 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-osAccount.md +++ b/zh-cn/application-dev/reference/apis/js-apis-osAccount.md @@ -5635,7 +5635,7 @@ addCredential(credentialInfo: CredentialInfo, callback: IIdmCallback): void; let credentialInfo: account_osAccount.CredentialInfo = { credType: account_osAccount.AuthType.PIN, credSubType: account_osAccount.AuthSubType.PIN_SIX, - token: null + token: new Uint8Array([]), }; let userIDM = new account_osAccount.UserIdentityManager(); userIDM.openSession((err: BusinessError, challenge: Uint8Array) => {