UNPKG

@accounts/types

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