mirror of
https://github.com/thelounge/thelounge.git
synced 2026-04-19 05:21:06 -04:00
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.
12 lines
266 B
TypeScript
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,
|
|
};
|