Files
poe-auto-pricer/app/model/stash-tab.ts

19 lines
270 B
TypeScript

interface IStashTabColor {
r: number;
g: number;
b: number;
}
export interface IStashTab {
colour: IStashTabColor;
hidden: boolean;
i: number;
id: string;
n: string;
selected: boolean;
srcC: string;
srcL: string;
srcR: string;
type: string;
}