/** * The `NotificationList` component displays a list of the logged-in user's * notifications, grouped by discussion. */ export default class NotificationList extends Component { $notifications: JQuery; $scrollParent: JQuery; boundScrollHandler: any; onremove(): void; scrollHandler(): void; /** * If the NotificationList component isn't in a panel (e.g. on NotificationPage when mobile), * we need to listen to scroll events on the window, and get scroll state from the body. */ inPanel(): boolean; } import Component from "../../common/Component";