thelounge/client/js/commands/index.ts
Reto Brunner 3fbbc39cd6 client/commands: statically import commands
Dynamic imports won't work very well with modules and we don't
really need them, it's just there to save us an import statement.

Let's flip this to a static version.
2024-05-04 12:29:57 +02:00

12 lines
266 B
TypeScript

import {input as collapse} from "./collapse";
import {input as expand} from "./expand";
import {input as join} from "./join";
import {input as search} from "./search";
export const commands = {
collapse: collapse,
expand: expand,
join: join,
search: search,
};