improvement(Passkey): Accept decimal values of timeout(ms)

This commit is contained in:
Artem Chepurnoy 2024-03-27 10:35:31 +02:00
parent 601984ac28
commit 8f3478a9a1
No known key found for this signature in database
GPG Key ID: FAC37D0CF674043E
1 changed files with 1 additions and 1 deletions

View File

@ -136,5 +136,5 @@ data class CreatePasskey(
* The time (in milliseconds) that the user has to respond * The time (in milliseconds) that the user has to respond
* to a prompt for registration before an error is returned. * to a prompt for registration before an error is returned.
*/ */
val timeout: Long? = null, val timeout: Double? = null,
) )