interface BaseLink {
    _id?: string;
    createdDate?: Date;
    deleted: boolean;
    destination: string;
    id?: string;
    isHosted: boolean;
    linkType?: linkTypes;
    modifiedDate?: Date;
    name: string;
    path: string;
    user: string | User;
}

Hierarchy (View Summary)

Properties

_id?: string
createdDate?: Date
deleted: boolean
destination: string
id?: string

Use _id instead

isHosted: boolean
linkType?: linkTypes
modifiedDate?: Date
name: string
path: string
user: string | User