interface IModule { _id: string; name: string; description?: string; active: boolean; } export type { IModule as I };