Type Alias EntryResource

EntryResource: Record<string, any> & {
    id: string;
    _created: Date;
    _creator: string;
    _embedded: any;
    _links: any;
    _modelTitle: string;
    _modelTitleField: string;
    _modified: Date;
    created: Date;
    modified: Date;
    [key: string]: any;
}