UNPKG

@replyke/core

Version:

Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.

12 lines (11 loc) 330 B
import { Rule } from "../../../interfaces/models/Rule"; export interface UpdateRuleProps { spaceId: string; ruleId: string; update: Partial<{ title: string; description: string | null; }>; } declare function useUpdateRule(): (props: UpdateRuleProps) => Promise<Rule>; export default useUpdateRule;