UNPKG

@arkasuryawan/m2-interfaces

Version:

Squaremetre Data Interfaces

15 lines (14 loc) 369 B
import { AuditInterface } from "."; export declare type NotificationType = "NEW" | "READED"; export interface NotificationInterface extends AuditInterface { headline?: string; description?: string; link?: string; userIdReaded?: string[]; status?: string; type?: string; to?: { type: "USER" | "TENANT"; id: string; }[]; }