import { Document } from 'mongoose'; import { IDefaultAttributes } from './commonInterface'; import { RMS_DIGITAL_STATUS } from '../constants/app'; export interface IRmsDigitalResourceAttributes extends IDefaultAttributes, Document { id: string; instituteId: string; title: string; type: string; authorOrPublisher?: string | null; fileStorageId?: string | null; url?: string | null; status: RMS_DIGITAL_STATUS; expiryDate?: Date | null; }