diff --git a/addons/xterm-addon-ligatures/src/index.ts b/addons/xterm-addon-ligatures/src/index.ts index 5a2480c8..c867369d 100644 --- a/addons/xterm-addon-ligatures/src/index.ts +++ b/addons/xterm-addon-ligatures/src/index.ts @@ -83,16 +83,3 @@ export function enableLigatures(term: Terminal): void { return []; }); } - -/** - * Add capabilities to the provided terminal class for enabling ligature - * support. After calling this function, an `enableLigatures()` method is - * available on the terminal class, which will enable ligature support when - * called. - * @param terminalConstructor Terminal class from xterm.js - */ -export function apply(terminalConstructor: typeof Terminal): void { - (terminalConstructor.prototype).enableLigatures = function (): void { - enableLigatures(this); - }; -}