30 lines
717 B
TypeScript
30 lines
717 B
TypeScript
|
|
import {Command, CommandData} from './command.js'
|
||
|
|
import {Exit} from "./exit.js";
|
||
|
|
import {InFile} from "./infile.js";
|
||
|
|
import {Copy} from "./copy.js";
|
||
|
|
import {Edit} from "./edit.js";
|
||
|
|
import {From} from "./from.js";
|
||
|
|
import {History} from "./history.js";
|
||
|
|
import {Load} from "./load.js";
|
||
|
|
import {OutFile} from "./outfile.js";
|
||
|
|
import {Paste} from "./paste.js";
|
||
|
|
import {RunFile} from "./runfile.js";
|
||
|
|
import {Save} from "./save.js";
|
||
|
|
import {To} from "./to.js";
|
||
|
|
|
||
|
|
export type Commands = Command<CommandData>[]
|
||
|
|
export const commands: Commands = [
|
||
|
|
new Copy,
|
||
|
|
new Edit,
|
||
|
|
new Exit,
|
||
|
|
new From,
|
||
|
|
new History,
|
||
|
|
new InFile,
|
||
|
|
new Load,
|
||
|
|
new OutFile,
|
||
|
|
new Paste,
|
||
|
|
new RunFile,
|
||
|
|
new Save,
|
||
|
|
new To,
|
||
|
|
]
|