👷‍♀️

This commit is contained in:
Elijah Lucian
2021-04-14 20:04:37 -06:00
parent 5b4726bee8
commit 8c40f30286
24 changed files with 891 additions and 90 deletions

View File

@@ -12,8 +12,8 @@ export type Account = {
users?: uuid[]
name: string
details: string
income: string
expenses: string
income: number
expenses: number
}
export type Stack = {
@@ -32,3 +32,8 @@ export type Transaction = {
amount: number // '30.44'
created_at: string // '2021-04-15T00:02:45.096071Z'
}
export type Password = {
password: string
passwordConfirm: string
}