@magicbell/react-headless
Version:
Hooks to build a notification inbox
14 lines (13 loc) • 350 B
text/typescript
export default interface IRemoteNotification {
id: string;
title: string;
content: string | null;
category: string | null;
topic: string | null;
actionUrl: string | null;
customAttributes: Record<string, unknown> | null | string;
readAt: number | null;
seenAt: number | null;
archivedAt: number | null;
sentAt: number | null;
}