import { APP_TYPE, USER_TYPES } from "../constants"; export interface IModuleDocsAttributes { id: string; userType: USER_TYPES; appType: APP_TYPE; fileStorageId: string; moduleName: string; moduleCode: string; createdBy?: string; updatedBy?: string; deletedBy?: string; createdAt?: Date; updatedAt?: Date; deletedAt?: Date; }