@veltdev/react
Version:
Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.
29 lines (28 loc) • 978 B
TypeScript
import React from 'react';
export declare class NotificationTabConfigItem {
name?: string;
enable?: boolean;
}
export declare class NotificationTabConfig {
forYou?: NotificationTabConfigItem;
documents?: NotificationTabConfigItem;
all?: NotificationTabConfigItem;
people?: NotificationTabConfigItem;
}
export interface IVeltNotificationsToolProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
darkMode?: boolean;
onNotificationClick?: Function;
shadowDom?: boolean;
panelShadowDom?: boolean;
variant?: string;
tabConfig?: NotificationTabConfig;
panelOpenMode?: 'popover' | 'sidebar';
panelVariant?: string;
maxDays?: number;
readNotificationsOnForYouTab?: boolean;
settings?: boolean;
selfNotifications?: boolean;
considerAllNotifications?: boolean;
}
declare const VeltNotificationsTool: React.FC<IVeltNotificationsToolProps>;
export default VeltNotificationsTool;