2023-04-06 14:18:26 +00:00
|
|
|
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 {
|
2023-04-23 20:17:33 +01:00
|
|
|
roomItemTypes: IFurni[]
|
|
|
|
wallItemTypes: IFurni[]
|
2023-04-06 14:18:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface IEffectMap {
|
|
|
|
effects: IEffectMapLibrary[]
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IProductData {
|
|
|
|
productData: { product: IProduct }
|
|
|
|
}
|