UNPKG

@replyke/core

Version:

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

9 lines (8 loc) 273 B
import { Rule } from "../../../interfaces/models/Rule"; export interface CreateRuleProps { spaceId: string; title: string; description?: string | null; } declare function useCreateRule(): (props: CreateRuleProps) => Promise<Rule>; export default useCreateRule;