UNPKG

@replyke/core

Version:

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

8 lines (7 loc) 269 B
import { type AccountSummary } from "../../store/slices/accountsSlice"; export interface UseAccountsReturn { accounts: AccountSummary[]; activeAccount: AccountSummary | null; accountCount: number; } export default function useAccounts(): UseAccountsReturn;