UNPKG

@state-less/leap-backend

Version:

A collection of open source fullstack services

14 lines (13 loc) 352 B
import { IComponent } from '@state-less/react-server'; export declare enum CommentPolicies { Authenticate = 0, AuthenticateRead = 1, Delete = 2 } export declare const Comments: IComponent<any>; export interface CommentProps { remove: () => void; } export declare const Comment: (props: CommentProps, { key }: { key: any; }) => any;