payload-totp-temp
Version:
Add an extra security layer to PayloadCMS using a Time-based One-time Password (TOTP).
9 lines (8 loc) • 368 B
TypeScript
import type { I18nClient } from '@payloadcms/translations';
import type { CustomTranslationsKeys, CustomTranslationsObject } from '../../../../i18n/types.js';
type Args = {
i18n: I18nClient<CustomTranslationsObject, CustomTranslationsKeys>;
secret: string;
};
export default function ShowSecret({ i18n, secret }: Args): import("react").JSX.Element;
export {};