Skip to content

Commit 388dfce

Browse files
committed
chore: improve typedoc
1 parent 5abffbe commit 388dfce

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

src/index.ts

+2-14
Original file line numberDiff line numberDiff line change
@@ -192,12 +192,6 @@ const AUTH_PROMPT_DEFAULTS: AuthenticationPrompt = {
192192
cancel: 'Cancel',
193193
};
194194

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-
*/
201195
function normalizeServiceOption(serviceOrOptions?: string | Options): Options {
202196
if (typeof serviceOrOptions === 'string') {
203197
console.warn(
@@ -212,12 +206,6 @@ function normalizeServiceOption(serviceOrOptions?: string | Options): Options {
212206
return serviceOrOptions || {};
213207
}
214208

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-
*/
221209
function normalizeOptions(
222210
serviceOrOptions?: string | Options
223211
): NormalizedOptions {
@@ -495,7 +483,7 @@ export function requestSharedWebCredentials(): Promise<
495483
}
496484

497485
/**
498-
* Sets shared web credentials (iOS and visionOS only).
486+
* Sets shared web credentials (iOS only).
499487
*
500488
* @param {string} server - The server URL.
501489
* @param {string} username - The username or e-mail to be saved.
@@ -529,7 +517,7 @@ export function setSharedWebCredentials(
529517
}
530518

531519
/**
532-
* Checks if the current device supports the specified authentication policy.
520+
* Checks if the current device supports the specified authentication policy (iOS only).
533521
*
534522
* @param {Options} [options] - A keychain options object.
535523
*

0 commit comments

Comments
 (0)