From f7118b19c663c562eb9febc6feefbe45ecf42628 Mon Sep 17 00:00:00 2001 From: Anthony Kim Date: Tue, 10 Feb 2026 19:08:12 -0800 Subject: [PATCH] Correct alphabetical ordering in demo/client/types.ts --- demo/client/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/client/types.ts b/demo/client/types.ts index 4790fd4f..c73f31e2 100644 --- a/demo/client/types.ts +++ b/demo/client/types.ts @@ -19,7 +19,7 @@ import type { WebFontsAddon } from '@xterm/addon-web-fonts'; import type { WebLinksAddon } from '@xterm/addon-web-links'; import type { WebglAddon } from '@xterm/addon-webgl'; -export type AddonType = 'attach' | 'clipboard' | 'fit' | 'image' | 'progress' | 'search' | 'serialize' | 'unicode11' | 'unicodeGraphemes' | 'webFonts' | 'webLinks' | 'webgl' | 'ligatures'; +export type AddonType = 'attach' | 'clipboard' | 'fit' | 'image' | 'ligatures' | 'progress' | 'search' | 'serialize' | 'unicode11' | 'unicodeGraphemes' | 'webFonts' | 'webLinks' | 'webgl'; export interface IDemoAddon { name: T;