@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.
17 lines (14 loc) • 442 B
TypeScript
import { AuthParams, AuthInterface } from '@vonage/auth';
import { VetchOptions } from '@vonage/vetch';
/**
* Represents parameters for configuring the VerifyClass.
*
* @deprecated The class will set the correct type
*/
type VerifyClassParameters = AuthParams & VetchOptions & {
/**
* (Optional) An authentication interface to use for authentication.
*/
auth?: AuthInterface;
};
export type { VerifyClassParameters };