import type { CommandDef } from "../../web/hooks/command.ts"; import { syscall } from "./syscall.ts"; export function invokeFunction( env: string, name: string, ...args: any[] ): Promise { return syscall("system.invokeFunction", env, name, ...args); } // Only available on the client export function invokeCommand(name: string): Promise { return syscall("system.invokeCommand", name); } // Only available on the client export function listCommands(): Promise<{ [key: string]: CommandDef }> { return syscall("system.listCommands"); } export function reloadPlugs() { syscall("system.reloadPlugs"); } // Returns what runtime environment this plug is run in, e.g. "server" or "client" can be undefined, which would mean a hybrid environment (such as mobile) export function getEnv(): Promise { return syscall("system.getEnv"); }