UNPKG

@shopify/theme-language-server-common

Version:

<h1 align="center" style="position: relative;" > <br> <img src="https://github.com/Shopify/theme-check-vscode/blob/main/images/shopify_glyph.png?raw=true" alt="logo" width="141" height="160"> <br> Theme Language Server </h1>

8 lines (7 loc) 623 B
import { CSSLanguageService } from '../css/CSSLanguageService'; import { DocumentManager } from '../documents'; import { Dependencies } from '../types'; import { DiagnosticsManager } from './DiagnosticsManager'; export declare function makeRunChecks(documentManager: DocumentManager, diagnosticsManager: DiagnosticsManager, { fs, loadConfig, themeDocset, jsonValidationSet, getMetafieldDefinitions, cssLanguageService, }: Pick<Dependencies, 'fs' | 'loadConfig' | 'themeDocset' | 'jsonValidationSet' | 'getMetafieldDefinitions'> & { cssLanguageService?: CSSLanguageService; }): (triggerURIs: string[]) => Promise<void>;