UNPKG

@grouparoo/core

Version:
22 lines (21 loc) 509 B
import { CommonModel } from "../classes/commonModel"; export declare class Notification extends CommonModel<Notification> { idPrefix(): string; from: string; subject: string; body: string; cta: string; ctaLink: string; readAt: Date; apiData(): Promise<{ id: string; from: string; subject: string; body: string; cta: string; ctaLink: string; createdAt: number; updatedAt: number; readAt: number; }>; }