import * as Y from '../index.mjs' import { WebsocketProvider } from '../provider/websocket.mjs' import { TextareaBinding } from '../bindings/textarea.mjs' const provider = new WebsocketProvider('ws://35.246.255.92:1234') const ydocument = provider.get('textarea') const type = ydocument.define('textarea', Y.Text) const textarea = document.querySelector('textarea') const binding = new TextareaBinding(type, textarea) window.textareaExample = { provider, ydocument, type, textarea, binding }