interface BaseListUser {
    _id?: string;
    contact: number;
    createdDate?: Date;
    deleted: boolean;
    email: string;
    id?: string;
    list: string | SavedList;
    modifiedDate?: Date;
    normalizedEmail: string;
    phoneNumber?: string;
    source?: string[];
    userId?: string;
}

Hierarchy (View Summary)

Properties

_id?: string
contact: number
createdDate?: Date
deleted: boolean
email: string
id?: string

Use _id instead

list: string | SavedList
modifiedDate?: Date
normalizedEmail: string
phoneNumber?: string
source?: string[]
userId?: string