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

24 lines
646 B
TypeScript
Raw Normal View History

import type { IFigureDataPalette, IFigureDataSetType, IFigureMapLibrary, IFurni, IProduct } from './SubConverters'
import type { KeyValuePairs } from './global'
2023-04-06 14:18:26 +00:00
export interface IFigureData {
palettes: IFigureDataPalette[]
setTypes: KeyValuePairs<string, IFigureDataSetType>
2023-04-06 14:18:26 +00:00
}
export interface IFigureMap {
libraries: IFigureMapLibrary[]
parts: KeyValuePairs<string, KeyValuePairs<number, number>>
2023-04-06 14:18:26 +00:00
}
export interface IFurniData {
roomItemTypes: IFurni[]
wallItemTypes: IFurni[]
2023-04-06 14:18:26 +00:00
}
export type IEffectMap = KeyValuePairs<string, KeyValuePairs<string, string>>
2023-04-06 14:18:26 +00:00
export interface IProductData {
productData: { product: IProduct }
}