Session

User session with ID, expiration, IP address, and user agent tracking.

Report an issue
auth

Install

$ npx shadcn@latest add @open-types/session

Source

export interface Session {
  id: string;
  user_id: string;
  expires_at: string;
  created_at: string;
  ip_address?: string;
  user_agent?: string;
}
export interface Session {
  id: string;
  user_id: string;
  expires_at: string;
  created_at: string;
  ip_address?: string;
  user_agent?: string;
}