mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-03 14:27:03 +02:00
12 lines
277 B
TypeScript
12 lines
277 B
TypeScript
import { IMap } from "../types";
|
|
|
|
export const EmployeePositions: IMap<string> = {
|
|
Operations: "Operations",
|
|
Engineer: "Engineer",
|
|
Business: "Business",
|
|
Management: "Management",
|
|
RandD: "Research & Development",
|
|
Training: "Training",
|
|
Unassigned: "Unassigned",
|
|
};
|