import { DataBuddy } from '@dank-inc/data-buddy' import { Account, Stack, Transaction, User } from '../../types' export const users = new DataBuddy([ { id: '42', name: 'TestUser42', email: 'testuser@email.com', }, ]) export const accounts = new DataBuddy([]) export const stacks = new DataBuddy([]) export const transactions = new DataBuddy([])