From 22a25ded9f7d9c9a96cce8d1bc12475ca0434201 Mon Sep 17 00:00:00 2001 From: Minteck Date: Wed, 9 Feb 2022 17:58:07 +0100 Subject: Major update --- node_modules/css-select/lib/compile.d.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 node_modules/css-select/lib/compile.d.ts (limited to 'node_modules/css-select/lib/compile.d.ts') diff --git a/node_modules/css-select/lib/compile.d.ts b/node_modules/css-select/lib/compile.d.ts new file mode 100644 index 0000000..7184c95 --- /dev/null +++ b/node_modules/css-select/lib/compile.d.ts @@ -0,0 +1,14 @@ +import { InternalSelector } from "./types"; +import { Selector } from "css-what"; +import type { CompiledQuery, InternalOptions } from "./types"; +/** + * Compiles a selector to an executable function. + * + * @param selector Selector to compile. + * @param options Compilation options. + * @param context Optional context for the selector. + */ +export declare function compile(selector: string | Selector[][], options: InternalOptions, context?: Node[] | Node): CompiledQuery; +export declare function compileUnsafe(selector: string | Selector[][], options: InternalOptions, context?: Node[] | Node): CompiledQuery; +export declare function compileToken(token: InternalSelector[][], options: InternalOptions, context?: Node[] | Node): CompiledQuery; +//# sourceMappingURL=compile.d.ts.map \ No newline at end of file -- cgit