Updates dockerfile
All checks were successful
Build and Push / build (push) Successful in 55s

This commit is contained in:
2026-02-16 15:09:37 -05:00
parent 8346776f2a
commit d181f77fb2
14943 changed files with 2078509 additions and 16 deletions

21
node_modules/emmet/dist/stylesheet/index.d.ts generated vendored Normal file
View 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;