diff --git a/plugins/notifications/report.api.md b/plugins/notifications/report.api.md index 0d2912638f..0ccf5698e2 100644 --- a/plugins/notifications/report.api.md +++ b/plugins/notifications/report.api.md @@ -141,6 +141,13 @@ export const notificationsPlugin: BackstagePlugin< {} >; +// @public +export type NotificationsRenderItemProps = { + unreadCount: number; + to: string; + onClick: () => void; +}; + // @public (undocumented) export const NotificationsSidebarItem: ( props?: NotificationsSideBarItemProps, @@ -158,6 +165,7 @@ export type NotificationsSideBarItemProps = { text?: string; disableHighlight?: boolean; noTrack?: boolean; + renderItem?: (props: NotificationsRenderItemProps) => React_2.ReactNode; }; // @public (undocumented)