mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-02-24 17:23:07 +01:00
23 lines
581 B
Markdown
23 lines
581 B
Markdown
# PointRef
|
|
|
|
`PointRef` objects keep a specific point in a document synced over time as new operations are applied to the editor. You can access their property `current` at any time for the up-to-date `Point` value.
|
|
|
|
```typescript
|
|
interface PointRef {
|
|
current: Point | null
|
|
affinity: 'forward' | 'backward' | null
|
|
unref(): Point | null
|
|
}
|
|
```
|
|
|
|
- [Static methods](#static-methods)
|
|
- [Transform methods](#trasnform-methods)
|
|
|
|
## Static methods
|
|
|
|
### Transform methods
|
|
|
|
###### `PointRef.transform(ref: PointRef, op: Operation)`
|
|
|
|
Transform the point refs current value by an `op`.
|