1 | import type { CSSAbbreviation } from '@emmetio/css-abbreviation';
|
2 | import { Config, SnippetsMap } from '../config.js';
|
3 | import type { CSSSnippet } from './snippets.js';
|
4 | export { default as stringify, CSSAbbreviationScope } from './format.js';
|
5 | type MatchInput = CSSSnippet | string;
|
6 |
|
7 |
|
8 |
|
9 |
|
10 | export default function parse(abbr: string | CSSAbbreviation, config: Config): CSSAbbreviation;
|
11 |
|
12 |
|
13 |
|
14 | export declare function convertSnippets(snippets: SnippetsMap): CSSSnippet[];
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 | export declare function findBestMatch<T extends MatchInput>(abbr: string, items: T[], minScore?: number, partialMatch?: boolean): T | null;
|