@yoopta/editor
Version:
<h2 align="center">Yoopta-Editor v1 🎉</h2> <p align="center">Yoopta-Editor - is an open source notion-like editor 💥</p> <div align="center"> <img width="574" alt="Screen Shot 2023-01-25 at 16 04 29" src="https://user-images.githubusercontent.com/2909311
20 lines • 632 B
TypeScript
import type { YooEditor } from '../types';
import type { GetPointOptions } from './types';
/**
* Get anchor point from Slate selection
*
* @param editor - YooEditor instance
* @param options - Get point options
* @returns Anchor point or null
*
* @example
* ```typescript
* // Get anchor point from current selection
* const anchor = Selection.getAnchor(editor);
*
* // Get anchor point from specific block
* const anchor = Selection.getAnchor(editor, { at: 0 });
* ```
*/
export declare function getAnchor(editor: YooEditor, options?: GetPointOptions): any;
//# sourceMappingURL=getAnchor.d.ts.map