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) • 653 B
TypeScript
import React from 'react';
import { type ParserProps } from './Parser';
export type EmbeddedVideoProps = Partial<ParserProps> & {
href: string;
width?: number | string;
showText?: boolean;
allowFullScreen?: boolean;
autoPlay?: boolean;
showCaptions?: boolean;
lazy?: boolean;
};
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<Partial<ParserProps> & {
href: string;
width?: number | string;
showText?: boolean;
allowFullScreen?: boolean;
autoPlay?: boolean;
showCaptions?: boolean;
lazy?: boolean;
} & React.RefAttributes<HTMLElement>>>;
export default _default;