UNPKG

payload-totp

Version:

Add an extra security layer to PayloadCMS using a Time-based One-time Password (TOTP).

8 lines (7 loc) 283 B
import type { AdminViewProps, ServerComponentProps } from 'payload'; import type { PayloadTOTPConfig } from '../../../types.js'; type Args = { pluginOptions: PayloadTOTPConfig; } & AdminViewProps & ServerComponentProps; export declare const TOTPSetup: React.FC<Args>; export {};