bitburner-src/src/Terminal/commands/nano.ts
Olivier Gagnon 48f80f25d6 fmt and lint
2022-04-06 19:30:08 -04:00

17 lines
475 B
TypeScript

import { ITerminal } from "../ITerminal";
import { IRouter } from "../../ui/Router";
import { IPlayer } from "../../PersonObjects/IPlayer";
import { BaseServer } from "../../Server/BaseServer";
import { commonEditor } from "./common/editor";
export function nano(
terminal: ITerminal,
router: IRouter,
player: IPlayer,
server: BaseServer,
args: (string | number | boolean)[],
): void {
return commonEditor("nano", { terminal, router, player, server, args });
}