export interface INotificationClientTransformed { template: string; picture1: string; picture2?: string; entities: Array; } export interface INotificationEntity { display: string; entityType: string; } export interface INotificationCommentEntity extends INotificationEntity { commentId: string; projectId: string; threadId: string; } export interface INotificationProjectEntity extends INotificationEntity { projectId: string; } export interface INotificationThreadEntity extends INotificationEntity { projectId: string; threadId: string; } export interface INotificationUserEntity extends INotificationEntity { userId: string; } //# sourceMappingURL=INotificationClientTransformed.d.ts.map