UNPKG

612 BTypeScriptView Raw
1import { CSSAbbreviation } from '@emmetio/css-abbreviation';
2import { Config } from '../config.js';
3export 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};
13export default function css(abbr: CSSAbbreviation, config: Config): string;