1 | import { CSSAbbreviation } from '@emmetio/css-abbreviation';
|
2 | import { Config } from '../config.js';
|
3 | export declare const CSSAbbreviationScope: {
|
4 | /** Include all possible snippets in match */
|
5 | readonly Global: "@@global";
|
6 | /** Include raw snippets only (e.g. no properties) in abbreviation match */
|
7 | readonly Section: "@@section";
|
8 | /** Include properties only in abbreviation match */
|
9 | readonly Property: "@@property";
|
10 | /** Resolve abbreviation in context of CSS property value */
|
11 | readonly Value: "@@value";
|
12 | };
|
13 | export default function css(abbr: CSSAbbreviation, config: Config): string;
|