File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ import { nix } from '@replit/codemirror-lang-nix';
107107import { svelte } from '@replit/codemirror-lang-svelte' ;
108108import { solidity } from '@replit/codemirror-lang-solidity' ;
109109
110- export const langs : Record < string , ( ) => LanguageSupport | StreamLanguage < unknown > > = {
110+ export const langs = {
111111 '1' : ( ) => StreamLanguage . define ( troff ) ,
112112 '2' : ( ) => StreamLanguage . define ( troff ) ,
113113 '3' : ( ) => StreamLanguage . define ( troff ) ,
@@ -332,7 +332,7 @@ export const langs: Record<string, () => LanguageSupport | StreamLanguage<unknow
332332 yml : ( ) => yaml ( ) ,
333333 ys : ( ) => StreamLanguage . define ( yacas ) ,
334334 z80 : ( ) => StreamLanguage . define ( z80 ) ,
335- } ;
335+ } satisfies Record < string , ( ) => LanguageSupport | StreamLanguage < unknown > > ;
336336
337337export const langNames = Object . keys ( langs ) as LanguageName [ ] ;
338338
You can’t perform that action at this time.
0 commit comments