1
0
silverbullet/plugos-syscall/event.ts
2022-04-01 17:07:08 +02:00

6 lines
171 B
TypeScript

import { syscall } from "./syscall";
export async function dispatch(eventName: string, data: any): Promise<void> {
return syscall("event.dispatch", eventName, data);
}