Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
17 lines
632 B
Plaintext
17 lines
632 B
Plaintext
import type { Collection } from '../collections/config/types.js';
|
|
import type { SanitizedConfig } from '../config/types.js';
|
|
import type { InitializedEmailAdapter } from '../email/types.js';
|
|
import type { TypedUser } from '../index.js';
|
|
import type { PayloadRequest } from '../types/index.js';
|
|
type Args = {
|
|
collection: Collection;
|
|
config: SanitizedConfig;
|
|
disableEmail: boolean;
|
|
email: InitializedEmailAdapter;
|
|
req: PayloadRequest;
|
|
token: string;
|
|
user: TypedUser;
|
|
};
|
|
export declare function sendVerificationEmail(args: Args): Promise<void>;
|
|
export {};
|
|
//# sourceMappingURL=sendVerificationEmail.d.ts.map |