UNPKG

@nangohq/types

Version:

Types used in Nango applications

12 lines (11 loc) 262 B
import type { Timestamps } from '../db.js'; export interface DBInvitation extends Timestamps { id: number; name: string; email: string; account_id: number; invited_by: number; token: string; expires_at: Date; accepted: boolean; }