vscode-css-languageservice
Version:
Language service for CSS, LESS and SCSS
17 lines (16 loc) • 765 B
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
;
import * as webCustomData from '../data/webCustomData';
import { CSSDataManager } from './dataManager';
import { CSSDataProvider } from './dataProvider';
export * from './entry';
export * from './colors';
export * from './builtinData';
export * from './dataProvider';
export * from './dataManager';
export var cssDataManager = new CSSDataManager([
new CSSDataProvider(webCustomData.cssData)
]);