UNPKG

@replyke/core

Version:

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

8 lines (7 loc) 237 B
import { Rule } from "../../../interfaces/models/Rule"; export interface FetchRuleProps { spaceId: string; ruleId: string; } declare function useFetchRule(): (props: FetchRuleProps) => Promise<Rule>; export default useFetchRule;