UNPKG

@replyke/core

Version:

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

9 lines (8 loc) 234 B
import { List } from "../../interfaces/models/List"; declare function useUpdateList(): ({ listId, update, }: { listId: string; update: Partial<{ name: string; }>; }) => Promise<List>; export default useUpdateList;