mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-26 01:23:49 +01:00
4 lines
84 B
TypeScript
4 lines
84 B
TypeScript
import { Order } from "./Order";
|
|
|
|
export type IOrderBook = Record<string, Order[]>;
|