UNPKG

@trycourier/courier-ui-inbox

Version:

Inbox components for the Courier web UI

9 lines (8 loc) 268 B
import { InboxMessage } from '@trycourier/courier-js'; import { CourierInboxFeedType } from './feed-type'; export type InboxDataSet = { feedType: CourierInboxFeedType; messages: InboxMessage[]; canPaginate: boolean; paginationCursor: string | null; };