mirror of
https://github.com/trafficlunar/tomodachi-share.git
synced 2026-03-28 19:23:15 +00:00
14 lines
246 B
TypeScript
14 lines
246 B
TypeScript
import { Prisma } from "@prisma/client";
|
|
import { DefaultSession } from "next-auth";
|
|
|
|
declare module "next-auth" {
|
|
interface Session {
|
|
user: {
|
|
username?: string;
|
|
} & DefaultSession["user"];
|
|
}
|
|
|
|
interface User {
|
|
username?: string;
|
|
}
|
|
}
|