mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-23 06:12:28 +08:00
16 lines
247 B
TypeScript
16 lines
247 B
TypeScript
import { Subscription } from "@/types";
|
|
import "next-auth";
|
|
|
|
declare module "next-auth" {
|
|
interface User {
|
|
id: string;
|
|
usage: number;
|
|
stripeId: number;
|
|
subscription: Subscription;
|
|
}
|
|
|
|
interface Session {
|
|
user: User;
|
|
}
|
|
}
|