View source
typedef DocumentSelector
package languageServerProtocol.protocol
import languageServerProtocol.protocol.Protocol
A document selector is the combination of one or many document filters.
@sample let sel:DocumentSelector = [{ language: 'typescript' }, { language: 'json', pattern: '**∕tsconfig.json' }]
;
Alias
alias for
Array<EitherType<String, languageServerProtocol.protocol.DocumentFilter>>