From 83354b2b88218090988dd6e526b0a2505b57e0f1 Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Thu, 6 Apr 2023 22:18:28 +0200 Subject: Updated 5 files and added 1110 files (automated) --- .../node_modules/css-select/lib/esm/compile.d.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 includes/external/addressbook/node_modules/css-select/lib/esm/compile.d.ts (limited to 'includes/external/addressbook/node_modules/css-select/lib/esm/compile.d.ts') diff --git a/includes/external/addressbook/node_modules/css-select/lib/esm/compile.d.ts b/includes/external/addressbook/node_modules/css-select/lib/esm/compile.d.ts new file mode 100644 index 0000000..f67b508 --- /dev/null +++ b/includes/external/addressbook/node_modules/css-select/lib/esm/compile.d.ts @@ -0,0 +1,13 @@ +import { Selector } from "css-what"; +import type { CompiledQuery, InternalOptions, InternalSelector } from "./types.js"; +/** + * 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