react-facebook
Version:
Facebook components like a Login button, Like, Share, Comments, Embedded Post/Video, Messenger Chat, and Facebook Pixel tracking
22 lines (21 loc) • 676 B
TypeScript
import React from 'react';
import { type ParserProps } from './Parser';
export type CommentsProps = Partial<ParserProps> & {
href?: string;
numPosts?: number;
orderBy?: 'reverse_time' | 'time';
width?: number | string;
colorScheme?: 'light' | 'dark';
mobile?: boolean;
lazy?: boolean;
};
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<Partial<ParserProps> & {
href?: string;
numPosts?: number;
orderBy?: "reverse_time" | "time";
width?: number | string;
colorScheme?: "light" | "dark";
mobile?: boolean;
lazy?: boolean;
} & React.RefAttributes<HTMLElement>>>;
export default _default;