UNPKG

payloadcms_otp_plugin

Version:

A comprehensive One-Time Password (OTP) authentication plugin for Payload CMS that enables secure passwordless authentication via SMS and email

8 lines (7 loc) 177 B
import type { Payload } from 'payload'; type Args = { payload: Payload; value: string; }; export declare const encrypt: ({ payload, value }: Args) => string; export {};