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';
107
107
import { svelte } from '@replit/codemirror-lang-svelte' ;
108
108
import { solidity } from '@replit/codemirror-lang-solidity' ;
109
109
110
- export const langs : Record < string , ( ) => LanguageSupport | StreamLanguage < unknown > > = {
110
+ export const langs = {
111
111
'1' : ( ) => StreamLanguage . define ( troff ) ,
112
112
'2' : ( ) => StreamLanguage . define ( troff ) ,
113
113
'3' : ( ) => StreamLanguage . define ( troff ) ,
@@ -332,7 +332,7 @@ export const langs: Record<string, () => LanguageSupport | StreamLanguage<unknow
332
332
yml : ( ) => yaml ( ) ,
333
333
ys : ( ) => StreamLanguage . define ( yacas ) ,
334
334
z80 : ( ) => StreamLanguage . define ( z80 ) ,
335
- } ;
335
+ } satisfies Record < string , ( ) => LanguageSupport | StreamLanguage < unknown > > ;
336
336
337
337
export const langNames = Object . keys ( langs ) as LanguageName [ ] ;
338
338
You can’t perform that action at this time.
0 commit comments