@replyke/core
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
7 lines (6 loc) • 300 B
TypeScript
import { ConnectionActionResponse } from "../../../interfaces/models/Connection";
export interface DeclineConnectionProps {
connectionId: string;
}
declare function useDeclineConnection(): (props: DeclineConnectionProps) => Promise<ConnectionActionResponse>;
export default useDeclineConnection;