UNPKG

strapi-plugin-comments

Version:
12 lines (11 loc) 413 B
import { FC } from 'react'; import { CommentDetails } from '../../api/schemas'; import { AllowedActions } from '../../types'; type DiscussionThreadProps = { readonly allowedActions: AllowedActions; readonly isReloading: boolean; readonly level: CommentDetails['level']; readonly selected: CommentDetails['selected']; }; export declare const DiscussionThread: FC<DiscussionThreadProps>; export {};