e6f77b12af
Initial implementation of command link arguments --------- Co-authored-by: prcrst <p-github@prcr.st> Co-authored-by: Zef Hemel <zef@zef.me>
29 lines
879 B
TypeScript
29 lines
879 B
TypeScript
import type { CommandDef } from "../../web/hooks/command.ts";
|
|
import { syscall } from "./syscall.ts";
|
|
|
|
export function invokeFunction(
|
|
name: string,
|
|
...args: any[]
|
|
): Promise<any> {
|
|
return syscall("system.invokeFunction", name, ...args);
|
|
}
|
|
|
|
// Only available on the client
|
|
export function invokeCommand(name: string, args?: string[]): Promise<any> {
|
|
return syscall("system.invokeCommand", name, args);
|
|
}
|
|
|
|
// 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<string | undefined> {
|
|
return syscall("system.getEnv");
|
|
}
|