interface ListResponse {
    data: Notification[];
    loadMoreKey?: {
        lastNotificationId: string;
    };
}

Properties

Properties

data: Notification[]
loadMoreKey?: {
    lastNotificationId: string;
}