@hhgtech/hhg-components
Version:
Hello Health Group common components
14 lines (13 loc) • 438 B
TypeScript
/// <reference types="react" />
export type CardReactionsContextProps = {
liked?: boolean;
loveCount?: number;
isReplied?: boolean;
trackingCategory?: string;
trackingLabel?: string;
onLikeClick?: () => void;
onShareClick?: () => void;
onCommentClick?: () => void;
onSaveClick?: () => void;
};
export declare const CardReactionsContext: import("react").Context<CardReactionsContextProps>;