Add Movement !
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -105,6 +105,7 @@ export interface IUserProfile {
|
||||
asked_circuits: any[]
|
||||
refused_circuits: any[]
|
||||
manage_mycircuits: ICircuit[]
|
||||
useraccounts: IAccount[]
|
||||
}
|
||||
|
||||
export interface IPaymentType {
|
||||
|
||||
Reference in New Issue
Block a user