1
0
silverbullet/web/syscalls/client_code_widget.ts
2023-11-21 13:26:48 +01:00

11 lines
280 B
TypeScript

import { SysCallMapping } from "../../plugos/system.ts";
import { broadcastReload } from "../components/widget_sandbox_iframe.ts";
export function clientCodeWidgetSyscalls(): SysCallMapping {
return {
"codeWidget.refreshAll": () => {
broadcastReload();
},
};
}