This commit is contained in:
Elijah Lucian
2021-04-14 20:36:40 -06:00
parent 8c40f30286
commit 486955a861
11 changed files with 20260 additions and 151 deletions

View File

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