UNPKG

@nangohq/types

Version:

Types used in Nango applications

11 lines (10 loc) 217 B
import type { Timestamps } from '../db.js'; /** * Onboarding row in database */ export interface DBOnboarding extends Timestamps { id: number; user_id: number; progress: number; complete: boolean; }