@replyke/core
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
10 lines (9 loc) • 532 B
TypeScript
import React, { ReactNode } from "react";
import { UseCommentSectionDataProps, UseCommentSectionDataValues } from "../hooks/comments/useCommentSectionData";
export interface CommentSectionProviderProps extends UseCommentSectionDataProps {
children: ReactNode;
}
export interface CommentSectionContextValues extends UseCommentSectionDataValues {
}
export declare const CommentSectionContext: React.Context<Partial<CommentSectionContextValues>>;
export declare const CommentSectionProvider: React.FC<CommentSectionProviderProps>;