1
0
silverbullet/web/syscalls/client_code_widget.ts
2023-11-15 10:08:21 +01:00

12 lines
330 B
TypeScript

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