UNPKG

@hhgtech/hhg-components

Version:
14 lines (13 loc) 438 B
/// <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>;