Initialisation du code

This commit is contained in:
2024-01-04 17:34:54 +01:00
parent 8a5ed5a788
commit bfee7c82e5
1487 changed files with 171485 additions and 0 deletions

10
node_modules/cheerio-select/lib/positionals.d.ts generated vendored Normal file
View File

@@ -0,0 +1,10 @@
import type { Selector, PseudoSelector } from "css-what";
export declare type Filter = "first" | "last" | "eq" | "nth" | "gt" | "lt" | "even" | "odd" | "not";
export declare const filterNames: Set<string>;
export interface CheerioSelector extends PseudoSelector {
name: Filter;
data: string | null;
}
export declare function isFilter(s: Selector): s is CheerioSelector;
export declare function getLimit(filter: Filter, data: string | null, partLimit: number): number;
//# sourceMappingURL=positionals.d.ts.map