@trycourier/courier-ui-inbox
Version:
Inbox components for the Courier web UI
20 lines (19 loc) • 669 B
TypeScript
import { CourierBaseElement } from '@trycourier/courier-ui-core';
import { CourierInboxTheme } from '../types/courier-inbox-theme';
export declare class CourierInboxPaginationListItem extends CourierBaseElement {
static get id(): string;
private _theme;
private _style?;
private _skeletonLoadingList?;
private _observer?;
private _customItem?;
private _onPaginationTrigger;
constructor(props: {
theme: CourierInboxTheme;
customItem?: HTMLElement;
onPaginationTrigger: () => void;
});
onComponentMounted(): void;
onComponentUnmounted(): void;
static getStyles(_theme: CourierInboxTheme): string;
}