@replyke/core
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
9 lines (8 loc) • 535 B
TypeScript
import { UseAppNotificationsDataValues, UseAppNotificationsDataProps } from "../hooks/app-notifications/useAppNotificationsData";
export interface AppNotificationsContextProps extends UseAppNotificationsDataProps {
children: React.ReactNode;
}
export interface AppNotificationsContextValues extends UseAppNotificationsDataValues {
}
export declare const AppNotificationsContext: import("react").Context<Partial<AppNotificationsContextValues>>;
export declare const AppNotificationsProvider: React.FC<AppNotificationsContextProps>;