alinea
Version:
[](https://npmjs.org/package/alinea) [](https://packagephobia.com/result?p=alinea)
8 lines (7 loc) • 394 B
TypeScript
import { PropsWithChildren } from 'react';
import { EntryEditor } from '../atoms/EntryEditorAtoms.js';
export declare function useEntryEditor(): EntryEditor | undefined;
export interface EntryEditorProviderProps {
editor: EntryEditor;
}
export declare function EntryEditorProvider({ children, editor }: PropsWithChildren<EntryEditorProviderProps>): import("react/jsx-runtime").JSX.Element;