trilium/apps/client/src/services/frontend_script_api_preact.ts
2025-12-20 21:19:53 +02:00

15 lines
262 B
TypeScript

import { Fragment, h } from "preact";
import * as hooks from "preact/hooks";
import RightPanelWidget from "../widgets/sidebar/RightPanelWidget";
export const preactAPI = Object.freeze({
// Core
h,
Fragment,
RightPanelWidget,
...hooks
});