rypi-scrapper/src/types/Converters.d.ts
2023-04-06 14:18:26 +00:00

31 lines
559 B
TypeScript

import type {
IEffectMapLibrary,
IFigureDataPalette,
IFigureDataSetType,
IFigureMapLibrary,
IFurni,
IProduct
} from './SubConverters'
export interface IFigureData {
palettes: IFigureDataPalette[]
setTypes: IFigureDataSetType[]
}
export interface IFigureMap {
libraries: IFigureMapLibrary[]
}
export interface IFurniData {
roomitemtypes: { furnitype: IFurni }
wallitemtypes: { furnitype: IFurni }
}
export interface IEffectMap {
effects: IEffectMapLibrary[]
}
export interface IProductData {
productData: { product: IProduct }
}