diff --git a/types/slate/index.d.ts b/types/slate/index.d.ts index 329f7412a9..18664c54d2 100644 --- a/types/slate/index.d.ts +++ b/types/slate/index.d.ts @@ -406,7 +406,7 @@ declare class BaseNode< createRange(properties: RangeProperties | Range): Range; createSelection(properties: SelectionProperties | Selection): Selection; filterDescendants(iterator: (node: Node) => boolean): Immutable.List; - findDescendants(iterator: (node: Node) => boolean): Node | null; + findDescendant(iterator: (node: Node) => boolean): Node | null; getActiveMarksAtRange(range: Range): Immutable.Set; getAncestors(path: Path): Immutable.List | null; getBlocks(): Immutable.List;