mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-22 20:16:57 +00:00
13 lines
202 B
TypeScript
13 lines
202 B
TypeScript
import { ObjectId } from "mongodb";
|
|
|
|
export type UserModel = {
|
|
email: string;
|
|
emailVerified?: Date;
|
|
locale: string;
|
|
};
|
|
|
|
export type VerificationModel = {
|
|
identifier: string;
|
|
expires: Date;
|
|
};
|