first commit

This commit is contained in:
Olu Amey
2023-03-25 23:06:51 -04:00
commit 8278a33443
2865 changed files with 170918 additions and 0 deletions
@@ -0,0 +1,25 @@
export interface IAccount {
username: string
email: string
language: string
timeZone: string
communications: {
email: boolean
sms: boolean
phone: boolean
}
requireInfo: boolean
}
export const defaultAccount: IAccount = {
username: 'max_stone',
email: 'nick.watson@loop.com',
language: 'en',
timeZone: 'Alaska',
communications: {
email: false,
sms: true,
phone: false,
},
requireInfo: false,
}