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>

10 lines (9 loc) 561 B
import { JSONPath } from 'vscode-json-languageservice'; import { GetTranslationsForURI } from '../../../translations'; import { RequestContext } from '../../RequestContext'; import { JSONCompletionItem, JSONCompletionProvider } from '../JSONCompletionProvider'; export declare class SchemaTranslationsCompletionProvider implements JSONCompletionProvider { private getDefaultSchemaTranslations; constructor(getDefaultSchemaTranslations: GetTranslationsForURI); completeValue(context: RequestContext, path: JSONPath): Promise<JSONCompletionItem[]>; }