@hhgtech/hhg-components
Version:
Hello Health Group common components
11 lines (10 loc) • 516 B
TypeScript
import React from 'react';
import { SocialLinkDataType } from "../createNewPostContent/type";
export type Props = {
bannedWords?: string[];
socialLinkData?: SocialLinkDataType | null;
onInvalidUrlsChange?: (v: string[]) => void;
onSocialLinkChanged?: (data?: SocialLinkDataType | null) => void;
onChange?: (val: string) => void;
};
export declare const PostVideoReview: ({ socialLinkData, bannedWords, onChange, onInvalidUrlsChange, onSocialLinkChanged, }: Props) => React.JSX.Element;