import { LinkType } from './link.type'; import { FileInterface } from './file.interface'; interface EntityType { title: string; description: string; entityId: number | string; customLink?: string; file?: FileInterface; linkType?: LinkType; } export type { EntityType };