Export fields from the Selection object. (#14752)

See: https://developer.mozilla.org/en-US/docs/Web/API/Selection
This commit is contained in:
treeform
2020-06-21 11:41:24 -07:00
committed by GitHub
parent 3ba0c30758
commit 1ffe113450

View File

@@ -107,6 +107,13 @@ type
timing*: PerformanceTiming
Selection* {.importc.} = ref object ## see `docs<https://developer.mozilla.org/en-US/docs/Web/API/Selection>`_
anchorNode*: Node
anchorOffset*: int
focusNode*: Node
focusOffset*: int
isCollapsed*: bool
rangeCount*: int
`type`*: cstring
LocalStorage* {.importc.} = ref object