rangy
rangy copied to clipboard
Uncaught TypeError: rangy__WEBPACK_IMPORTED_MODULE_4__.resoreSelection is not a function
I have installed rangy in a Angular2+ application. It appears that the function "rangy.resoreSelection" is not found.
I've also installed the types: https://www.npmjs.com/package/@types/rangy
https://github.com/timdown/rangy/wiki/Selection-Save-Restore-Module
import * as rangy from 'rangy';
I had to import the other file
import rangy from 'rangy';
import 'rangy/lib/rangy-selectionsaverestore.js';