1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-29 18:09:49 +02:00

Update Operation API documentation (#5239)

* fix typo in implementation

* doc based on implementation

* fix doc typo
This commit is contained in:
Sim Ho
2022-12-29 18:38:03 -05:00
committed by GitHub
parent d7353677e3
commit 55effa953c
2 changed files with 31 additions and 5 deletions

View File

@@ -150,7 +150,7 @@ export interface OperationInterface {
// eslint-disable-next-line no-redeclare
export const Operation: OperationInterface = {
/**
* Check of a value is a `NodeOperation` object.
* Check if a value is a `NodeOperation` object.
*/
isNodeOperation(value: any): value is NodeOperation {
@@ -158,7 +158,7 @@ export const Operation: OperationInterface = {
},
/**
* Check of a value is an `Operation` object.
* Check if a value is an `Operation` object.
*/
isOperation(value: any): value is Operation {
@@ -226,7 +226,7 @@ export const Operation: OperationInterface = {
},
/**
* Check of a value is a `SelectionOperation` object.
* Check if a value is a `SelectionOperation` object.
*/
isSelectionOperation(value: any): value is SelectionOperation {
@@ -234,7 +234,7 @@ export const Operation: OperationInterface = {
},
/**
* Check of a value is a `TextOperation` object.
* Check if a value is a `TextOperation` object.
*/
isTextOperation(value: any): value is TextOperation {