The supportsInterface
function in the WebAuthnValidationModule
contract checks if the contract implements a specific interface defined by the provided interfaceId
. It first checks for support of the IValidationModule
interface and then delegates to the parent contract's implementation to verify other interfaces.
interfaceId
(bytes4
): The identifier of the interface to check for support.