Files
poe-auto-pricer/app/model/item.ts

31 lines
572 B
TypeScript

import { IItemPrice } from './item-price';
export interface IItem {
category: any[];
corrupted: boolean;
descrText: string;
elder: boolean;
explicitMods: string[];
frameType: number;
h: number;
icon: string;
id: string;
identified: boolean;
ilvl: number;
implicitMods: string[];
inventoryId: string;
itemPrice?: IItemPrice;
league: string;
name: string;
properties: any[];
requirements: any[];
shaper: boolean;
sockets: any[];
stackSize?: number;
typeLine: string;
verified: boolean;
w: number;
x: number;
y: number;
}