This commit is contained in:
Александр Тороп
2024-03-30 18:27:37 +03:00
commit 038bf44010
2765 changed files with 293753 additions and 0 deletions

19
node_modules/parseley/lib/parser.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import * as ast from './ast';
/**
* Parse a CSS selector string.
*
* This function supports comma-separated selector lists
* and always returns an AST starting from a node of type `list`.
*
* @param str - CSS selector string (can contain commas).
*/
export declare function parse(str: string): ast.ListSelector;
/**
* Parse a CSS selector string.
*
* This function does not support comma-separated selector lists
* and always returns an AST starting from a node of type `compound`.
*
* @param str - CSS selector string (no commas).
*/
export declare function parse1(str: string): ast.CompoundSelector;