UNPKG

@replyke/core

Version:

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

7 lines (6 loc) 293 B
import type { AccountMap } from "../store/slices/accountsSlice"; export interface AccountStorage { getAccountMap(projectId: string): Promise<AccountMap | null>; setAccountMap(projectId: string, map: AccountMap): Promise<void>; deleteAccountMap(projectId: string): Promise<void>; }