UNPKG

@vonage/verify

Version:

Verify API provides a choice of routes for sending a code to a user. You can use this to confirm a user's contact information, as a second factor when authenticating users, or for step-up authentication.

14 lines 459 B
import { AuthInterface, AuthParams } from '@vonage/auth'; import { VetchOptions } from '@vonage/vetch'; /** * Represents parameters for configuring the VerifyClass. * * @deprecated The class will set the correct type */ export type VerifyClassParameters = AuthParams & VetchOptions & { /** * (Optional) An authentication interface to use for authentication. */ auth?: AuthInterface; }; //# sourceMappingURL=VerifyClassParameters.d.ts.map