@xterm/addon-search
Advanced tools
Comparing version 0.14.0-beta.3 to 0.14.0-beta.4
{ | ||
"name": "@xterm/addon-search", | ||
"version": "0.14.0-beta.3", | ||
"version": "0.14.0-beta.4", | ||
"author": { | ||
@@ -18,4 +18,3 @@ "name": "The xterm.js authors", | ||
"scripts": { | ||
"build": "../../node_modules/.bin/tsc -p .", | ||
"prepackage": "npm run build", | ||
"prepackage": "../../node_modules/.bin/tsc -p .", | ||
"package": "../../node_modules/.bin/webpack", | ||
@@ -22,0 +21,0 @@ "prepublishOnly": "npm run package" |
@@ -6,3 +6,4 @@ /** | ||
import { Terminal, IDisposable, ITerminalAddon, IDecoration } from '@xterm/xterm'; | ||
import type { Terminal, IDisposable, ITerminalAddon, IDecoration } from '@xterm/xterm'; | ||
import type { SearchAddon as ISearchApi } from '@xterm/addon-search'; | ||
import { EventEmitter } from 'common/EventEmitter'; | ||
@@ -65,3 +66,3 @@ import { Disposable, toDisposable, disposeArray, MutableDisposable } from 'common/Lifecycle'; | ||
export class SearchAddon extends Disposable implements ITerminalAddon { | ||
export class SearchAddon extends Disposable implements ITerminalAddon , ISearchApi { | ||
private _terminal: Terminal | undefined; | ||
@@ -68,0 +69,0 @@ private _cachedSearchTerm: string | undefined; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
96061
854