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>

9 lines (8 loc) 374 B
import { DocumentLink } from 'vscode-languageserver'; import { DocumentManager } from '../documents'; export declare class DocumentLinksProvider { private documentManager; private findThemeRootURI; constructor(documentManager: DocumentManager, findThemeRootURI: (uri: string) => Promise<string>); documentLinks(uriString: string): Promise<DocumentLink[]>; }