| 3 | export type LanguageExtensionProvider = () => Extension | Promise<Extension>; |
| 4 | |
| 5 | export interface AddModeOptions { |
| 6 | aliases?: string[]; |
| 7 | filenameMatchers?: RegExp[]; |
| 8 | } |
| 9 | |
| 10 | export interface ModesByName { |
| 11 | [name: string]: Mode; |
nothing calls this directly
no outgoing calls
no test coverage detected