Add Movement !

This commit is contained in:
Paolo Arena
2022-09-03 13:06:35 +02:00
parent 037ce99485
commit 0332059c8f
20 changed files with 447 additions and 19 deletions

View File

@@ -246,6 +246,10 @@ export interface IMetaTags {
description?: string
}
export interface ICircuitState {
listcircuits: ICircuit[]
}
export interface IGlobalState {
finishLoading: boolean
conta: number
@@ -895,8 +899,16 @@ export interface IMyCircuit {
date: Date
}
export interface ISendCoin {
circuitname: string
qty: number
dest: string
causal: string
symbol: string
}
export interface ICircuit {
_id: number
Num: number
groupnameId: string
name: string
path: string
@@ -932,6 +944,7 @@ export interface ICircuit {
export interface IAccount {
username: string
circuitId: number
circuit: ICircuit
name: string
deperibile?: boolean
importo_iniziale?: number

View File

@@ -64,6 +64,7 @@ export const NotifDefault: INotif = {
deleted: false,
status: StatusMessage.None,
extrafield: '',
extrarec: '',
}
export interface IMessage {
@@ -98,6 +99,7 @@ export interface INotif {
idrec?: string
deleted?: boolean
extrafield?: string
extrarec?: any
}
export interface IChat {

View File

@@ -105,6 +105,7 @@ export interface IUserProfile {
asked_circuits: any[]
refused_circuits: any[]
manage_mycircuits: ICircuit[]
useraccounts: IAccount[]
}
export interface IPaymentType {