rypi-scrapper/src/types/Converters.d.ts

30 lines
586 B
TypeScript
Raw Normal View History

import type {
IFigureDataPalette,
IFigureDataSetType,
IFigureMapLibrary,
IFloorItem,
IFurni,
IProduct
} from './SubConverters'
2023-04-06 14:18:26 +00:00
export interface IFigureData {
palettes: IFigureDataPalette[]
2023-05-02 16:21:09 +01:00
setTypes: Record<string, IFigureDataSetType>
2023-04-06 14:18:26 +00:00
}
export interface IFigureMap {
libraries: IFigureMapLibrary[]
2023-05-02 16:21:09 +01:00
parts: Record<string, Record<number, number>>
2023-04-06 14:18:26 +00:00
}
export interface IFurniData {
floorItems: IFloorItem[]
wallItems: IFurni[]
2023-04-06 14:18:26 +00:00
}
2023-05-02 16:21:09 +01:00
export type IEffectMap = Record<string, Record<string, string>>
2023-04-06 14:18:26 +00:00
export interface IProductData {
productData: { product: IProduct }
}