1
0
silverbullet/web/syscalls/client_code_widget.ts

11 lines
280 B
TypeScript
Raw Normal View History

2023-11-15 09:08:21 +00:00
import { SysCallMapping } from "../../plugos/system.ts";
import { broadcastReload } from "../components/widget_sandbox_iframe.ts";
export function clientCodeWidgetSyscalls(): SysCallMapping {
return {
"codeWidget.refreshAll": () => {
broadcastReload();
},
};
}