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>

12 lines (11 loc) 583 B
import { CompletionItem } from 'vscode-languageserver'; import { TypeSystem } from '../../TypeSystem'; import { LiquidCompletionParams } from '../params'; import { Provider } from './common'; import { GetThemeSettingsSchemaForURI } from '../../settings'; export declare class ObjectAttributeCompletionProvider implements Provider { private readonly typeSystem; private readonly getThemeSettingsSchema; constructor(typeSystem: TypeSystem, getThemeSettingsSchema: GetThemeSettingsSchemaForURI); completions(params: LiquidCompletionParams): Promise<CompletionItem[]>; }