mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 18:23:54 +01:00
8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
import { IOfficeSpace } from "./IOfficeSpace";
|
|
import { IMap } from "../types";
|
|
|
|
export interface IDivision {
|
|
name: string;
|
|
offices: IMap<IOfficeSpace | number>;
|
|
}
|