mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-02-18 10:53:43 +01:00
12 lines
244 B
TypeScript
12 lines
244 B
TypeScript
import { IOrderBook } from "./IOrderBook";
|
|
import { Stock } from "./Stock";
|
|
|
|
export type IStockMarket = {
|
|
[key: string]: Stock;
|
|
} & {
|
|
lastUpdate: number;
|
|
Orders: IOrderBook;
|
|
storedCycles: number;
|
|
ticksUntilCycle: number;
|
|
};
|