UNPKG

@accounts/types

Version:
10 lines (8 loc) 197 B
import { type EmailRecord } from './email-record'; export interface User { username?: string; emails?: EmailRecord[]; id: string; services?: Record<string, any>; deactivated: boolean; }