@oberoncms/core
Version:
OberonCMS is a cloud deployable CMS written in typescript based on the Puck visual editor
11 lines • 485 B
TypeScript
import { type PropsWithChildren } from "react";
import type { OberonAdapter, OberonServerActions } from "./lib/dtd";
export declare function OberonProvider({ children, adapter, actions, path, searchParams, }: PropsWithChildren<{
adapter: OberonAdapter;
actions: OberonServerActions;
path: string[];
searchParams: {
[key: string]: string | string[] | undefined;
};
}>): Promise<import("react/jsx-runtime").JSX.Element>;
//# sourceMappingURL=provider.d.ts.map