Skip to content

Commit f0d291f

Browse files
authored
Merge pull request #5694 from xtermjs/anthonykim1/cleanDemoClientTypes
Correct alphabetical ordering in demo/client/types.ts
2 parents f6b9829 + f7118b1 commit f0d291f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

demo/client/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import type { WebFontsAddon } from '@xterm/addon-web-fonts';
1919
import type { WebLinksAddon } from '@xterm/addon-web-links';
2020
import type { WebglAddon } from '@xterm/addon-webgl';
2121

22-
export type AddonType = 'attach' | 'clipboard' | 'fit' | 'image' | 'progress' | 'search' | 'serialize' | 'unicode11' | 'unicodeGraphemes' | 'webFonts' | 'webLinks' | 'webgl' | 'ligatures';
22+
export type AddonType = 'attach' | 'clipboard' | 'fit' | 'image' | 'ligatures' | 'progress' | 'search' | 'serialize' | 'unicode11' | 'unicodeGraphemes' | 'webFonts' | 'webLinks' | 'webgl';
2323

2424
export interface IDemoAddon<T extends AddonType> {
2525
name: T;

0 commit comments

Comments
 (0)