@@ -192,12 +192,6 @@ const AUTH_PROMPT_DEFAULTS: AuthenticationPrompt = {
192
192
cancel : 'Cancel' ,
193
193
} ;
194
194
195
- /**
196
- * Normalizes the service option, handling deprecated string format.
197
- *
198
- * @param {string | Options } [serviceOrOptions] - Service name string or options object.
199
- * @returns {Options } Normalized options object.
200
- */
201
195
function normalizeServiceOption ( serviceOrOptions ?: string | Options ) : Options {
202
196
if ( typeof serviceOrOptions === 'string' ) {
203
197
console . warn (
@@ -212,12 +206,6 @@ function normalizeServiceOption(serviceOrOptions?: string | Options): Options {
212
206
return serviceOrOptions || { } ;
213
207
}
214
208
215
- /**
216
- * Normalizes options, ensuring proper format and defaults.
217
- *
218
- * @param {string | Options } [serviceOrOptions] - Service name string or options object.
219
- * @returns {NormalizedOptions } Normalized options object with default values.
220
- */
221
209
function normalizeOptions (
222
210
serviceOrOptions ?: string | Options
223
211
) : NormalizedOptions {
@@ -495,7 +483,7 @@ export function requestSharedWebCredentials(): Promise<
495
483
}
496
484
497
485
/**
498
- * Sets shared web credentials (iOS and visionOS only).
486
+ * Sets shared web credentials (iOS only).
499
487
*
500
488
* @param {string } server - The server URL.
501
489
* @param {string } username - The username or e-mail to be saved.
@@ -529,7 +517,7 @@ export function setSharedWebCredentials(
529
517
}
530
518
531
519
/**
532
- * Checks if the current device supports the specified authentication policy.
520
+ * Checks if the current device supports the specified authentication policy (iOS only) .
533
521
*
534
522
* @param {Options } [options] - A keychain options object.
535
523
*
0 commit comments