Files
Trilium/apps/client/src/services/frontend_script_api_preact.ts

11 lines
170 B
TypeScript
Raw Normal View History

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