mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-05 15:17:48 +02:00
6 lines
92 B
TypeScript
6 lines
92 B
TypeScript
import { Order } from "./Order";
|
|
|
|
export interface IOrderBook {
|
|
[key: string]: Order[];
|
|
}
|