source: trip-planner-front/node_modules/css-select/lib/pseudo-selectors/subselects.d.ts@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 959 bytes
Line 
1import { CompileToken } from "./../types";
2import type { Selector } from "css-what";
3import type { CompiledQuery, InternalOptions, Adapter } from "../types";
4/** Used as a placeholder for :has. Will be replaced with the actual element. */
5export declare const PLACEHOLDER_ELEMENT: {};
6export declare function ensureIsTag<Node, ElementNode extends Node>(next: CompiledQuery<ElementNode>, adapter: Adapter<Node, ElementNode>): CompiledQuery<Node>;
7export declare type Subselect = <Node, ElementNode extends Node>(next: CompiledQuery<ElementNode>, subselect: Selector[][], options: InternalOptions<Node, ElementNode>, context: Node[] | undefined, compileToken: CompileToken<Node, ElementNode>) => CompiledQuery<ElementNode>;
8export declare function getNextSiblings<Node, ElementNode extends Node>(elem: Node, adapter: Adapter<Node, ElementNode>): ElementNode[];
9export declare const subselects: Record<string, Subselect>;
10//# sourceMappingURL=subselects.d.ts.map
Note: See TracBrowser for help on using the repository browser.