PCB lista categorie
This commit is contained in:
@@ -1,7 +0,0 @@
|
||||
export interface ICategory {
|
||||
id?: number,
|
||||
descr_it?: string
|
||||
descr_en?: string
|
||||
descr_es?: string
|
||||
campo2bool: boolean
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
import { IAction } from '@src/model/Projects'
|
||||
import { IFriends, IGroupShort, IMyGroup, IPaymentType } from '@src/model/UserStore'
|
||||
import {
|
||||
IDepartment, IProducer, IShareWithUs, IStorehouse,
|
||||
IDepartment, IProducer, IShareWithUs, IStorehouse, ICategory
|
||||
} from '@src/model/Products'
|
||||
|
||||
import { IUserFields, IUserProfile } from '@src/model/UserStore'
|
||||
@@ -434,6 +434,7 @@ export interface IGlobalState {
|
||||
producers: IProducer[],
|
||||
storehouses: IStorehouse[],
|
||||
departments: IDepartment[],
|
||||
categories: ICategory[],
|
||||
sharewithus: IShareWithUs[],
|
||||
groups: IGroup[],
|
||||
resps: IResp[],
|
||||
|
||||
@@ -80,6 +80,12 @@ export interface IDepartment {
|
||||
username?: string,
|
||||
}
|
||||
|
||||
export interface ICategory {
|
||||
_id?: any
|
||||
name: string,
|
||||
img?: string,
|
||||
}
|
||||
|
||||
export interface IStorehouse {
|
||||
_id?: any
|
||||
idapp?: string
|
||||
|
||||
@@ -6,7 +6,6 @@ export * from './signup-option'
|
||||
export * from './key-value'
|
||||
// export * from './payload'
|
||||
|
||||
export * from './Categories'
|
||||
export * from './Todos'
|
||||
export * from './Projects'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user