Remove old plugins
This commit is contained in:
@ -13,7 +13,7 @@ export interface State {
|
||||
CurrentBudgetID?: string,
|
||||
Accounts: Map<string, Account>,
|
||||
CurrentAccountID?: string,
|
||||
Categories: [],
|
||||
Categories: Array<Category>,
|
||||
Transactions: [],
|
||||
Assignments: []
|
||||
}
|
||||
@ -21,6 +21,7 @@ export interface State {
|
||||
export interface Budget {
|
||||
ID: string
|
||||
Name: string
|
||||
AvailableBalance: number
|
||||
}
|
||||
|
||||
export interface Account {
|
||||
@ -28,6 +29,15 @@ export interface Account {
|
||||
OnBudget: boolean
|
||||
}
|
||||
|
||||
export interface Category {
|
||||
Group: string
|
||||
Name: string
|
||||
AvailableLastMonth: number
|
||||
Assigned: number
|
||||
Activity: number
|
||||
Available: number
|
||||
}
|
||||
|
||||
export const key: InjectionKey<Store<State>> = Symbol()
|
||||
|
||||
export const store = createStore<State>({
|
||||
|
Reference in New Issue
Block a user