kjelsrud.dev/node_modules/@astrojs/language-server/dist/plugins/html/utils.d.ts
2023-07-19 21:31:30 +02:00

6 lines
376 B
TypeScript

import type { CompletionItem } from 'vscode-languageserver-types';
/**
* The VS Code HTML language service provides a completion for data attributes that is independent from
* data providers, which mean that you can't disable it, so this function removes them from completions
*/
export declare function removeDataAttrCompletion(items: CompletionItem[]): CompletionItem[];