mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-07 15:18:08 +00:00
21 lines
399 B
Python
21 lines
399 B
Python
from typing import TYPE_CHECKING
|
|
|
|
from trezor import wire
|
|
|
|
from ...components.common.webauthn import ConfirmInfo
|
|
|
|
if TYPE_CHECKING:
|
|
Pageable = object
|
|
|
|
|
|
async def confirm_webauthn(
|
|
ctx: wire.GenericContext | None,
|
|
info: ConfirmInfo,
|
|
pageable: Pageable | None = None,
|
|
) -> bool:
|
|
raise NotImplementedError
|
|
|
|
|
|
async def confirm_webauthn_reset() -> bool:
|
|
raise NotImplementedError
|