@xterm/headless 5.6.0-beta.2 → 5.6.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xterm/headless",
|
|
3
3
|
"description": "A headless terminal component that runs in Node.js",
|
|
4
|
-
"version": "5.6.0-beta.
|
|
4
|
+
"version": "5.6.0-beta.4",
|
|
5
5
|
"main": "lib-headless/xterm-headless.js",
|
|
6
6
|
"types": "typings/xterm-headless.d.ts",
|
|
7
7
|
"repository": "https://github.com/xtermjs/xterm.js",
|
|
@@ -714,6 +714,17 @@ declare module '@xterm/headless' {
|
|
|
714
714
|
*/
|
|
715
715
|
onLineFeed: IEvent<void>;
|
|
716
716
|
|
|
717
|
+
/**
|
|
718
|
+
* Adds an event listener for when data has been parsed by the terminal,
|
|
719
|
+
* after {@link write} is called. This event is useful to listen for any
|
|
720
|
+
* changes in the buffer.
|
|
721
|
+
*
|
|
722
|
+
* This fires at most once per frame, after data parsing completes. Note
|
|
723
|
+
* that this can fire when there are still writes pending if there is a lot
|
|
724
|
+
* of data.
|
|
725
|
+
*/
|
|
726
|
+
onWriteParsed: IEvent<void>;
|
|
727
|
+
|
|
717
728
|
/**
|
|
718
729
|
* Adds an event listener for when the terminal is resized. The event value
|
|
719
730
|
* contains the new size.
|