UNPKG

@replyke/core

Version:

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

7 lines (6 loc) 218 B
import { List } from "../../interfaces/models/List"; declare function useCreateList(): ({ listName, parentListId, }: { listName: string; parentListId: string; }) => Promise<List>; export default useCreateList;