🎉 initiate project *astro_rewrite*
This commit is contained in:
parent
ffd4d5e86c
commit
2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions
21
node_modules/emmet/dist/stylesheet/index.d.ts
generated
vendored
Normal file
21
node_modules/emmet/dist/stylesheet/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
import type { CSSAbbreviation } from '@emmetio/css-abbreviation';
|
||||
import { Config, SnippetsMap } from '../config.js';
|
||||
import type { CSSSnippet } from './snippets.js';
|
||||
export { default as stringify, CSSAbbreviationScope } from './format.js';
|
||||
type MatchInput = CSSSnippet | string;
|
||||
/**
|
||||
* Parses given Emmet abbreviation into a final abbreviation tree with all
|
||||
* required transformations applied
|
||||
*/
|
||||
export default function parse(abbr: string | CSSAbbreviation, config: Config): CSSAbbreviation;
|
||||
/**
|
||||
* Converts given raw snippets into internal snippets representation
|
||||
*/
|
||||
export declare function convertSnippets(snippets: SnippetsMap): CSSSnippet[];
|
||||
/**
|
||||
* Finds best matching item from `items` array
|
||||
* @param abbr Abbreviation to match
|
||||
* @param items List of items for match
|
||||
* @param minScore The minimum score the best matched item should have to be a valid match.
|
||||
*/
|
||||
export declare function findBestMatch<T extends MatchInput>(abbr: string, items: T[], minScore?: number, partialMatch?: boolean): T | null;
|
||||
Loading…
Add table
Add a link
Reference in a new issue