other components... (2)

This commit is contained in:
Paolo Arena
2021-09-16 21:08:02 +02:00
parent fcc4f61f07
commit f351673917
276 changed files with 17183 additions and 3371 deletions

View File

@@ -110,5 +110,5 @@ export interface ICalendarState {
resourceWidth: number,
dayHeight: number,
enableThemes: boolean,
theme: {}
theme: any,
}

View File

@@ -6,13 +6,13 @@ export interface IEstimate {
title: string
advanced?: boolean
description?: string
viewlist?: number[]
viewlist?: number[] | null
listsel?: number
qtaName?: string
icon?: string
numpag?: number
numpag: number
qta?: number
price?: number
pricebase?: number
price: number
pricebase: number
checksel?: boolean
}

View File

@@ -76,12 +76,15 @@ export interface IMyPage {
img1?: string
content?: string
video1?: string
ratio1?: string
img2?: string
content2?: string
video2?: string
ratio2?: string
img3?: string
content3?: string
video3?: string
ratio3?: string
content4?: string
active?: boolean
inmenu?: boolean
@@ -262,6 +265,7 @@ export interface IListRoutes {
lang?: string
materialIcon?: string
component?: any
children?: any
reqauth?: boolean
isseparator?: boolean
inmenu?: boolean
@@ -480,7 +484,7 @@ export interface IFilter {
export interface IDataPass {
id: string
table: string
fieldsvalue: object
fieldsvalue: any
}
export interface IDataToSet {

View File

@@ -125,7 +125,7 @@ export interface IShareWithUs {
_id?: any
idapp?: string
userId?: string
description?: string
description: string
numshared?: number
rating?: number
}

View File

@@ -33,7 +33,7 @@ export interface IUserProfile {
saw_and_accepted?: boolean
qualified?: boolean
qualified_2invitati?: boolean
myshares?: IShareWithUs[]
myshares: IShareWithUs[]
socio?: boolean
socioresidente?: boolean
consiglio?: boolean

View File

@@ -9,6 +9,11 @@ export interface ILinkReg {
idlink: string
}
export interface ICallResult {
code?: string
msg?: string
}
export interface IIdToken {
x_auth_token: string
}

View File

@@ -10,7 +10,7 @@ export interface ISignupOptions {
repeatPassword?: string
terms?: boolean
aportador_solidario?: string
profile?: IUserProfile
profile: IUserProfile
// already_registered: boolean
}