mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-19 15:54:09 +02:00
Commit1
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
/* tslint:disable:max-line-length completed-docs variable-name*/
|
||||
import { IMap } from "../types";
|
||||
|
||||
export const TerminalHelpText: string[] = [
|
||||
"Type 'help name' to learn more about the command ",
|
||||
@@ -47,7 +46,7 @@ export const TerminalHelpText: string[] = [
|
||||
" ",
|
||||
];
|
||||
|
||||
const TemplatedHelpTexts: IMap<(command: string) => string[]> = {
|
||||
const TemplatedHelpTexts: Record<string, (command: string) => string[]> = {
|
||||
scriptEditor: (command) => {
|
||||
return [
|
||||
`Usage: ${command} [file ...] | [glob]`,
|
||||
@@ -70,7 +69,7 @@ const TemplatedHelpTexts: IMap<(command: string) => string[]> = {
|
||||
},
|
||||
};
|
||||
|
||||
export const HelpTexts: IMap<string[]> = {
|
||||
export const HelpTexts: Record<string, string[]> = {
|
||||
alias: [
|
||||
'Usage: alias [-g] [name="value"] ',
|
||||
" ",
|
||||
|
||||
Reference in New Issue
Block a user