6c5a5256c7
Switch SVG optimizer resolution from bin/svgo-cli.exe to bin/svgo.cmd. Update unit tests to validate the new local binary path behavior. Co-Authored-By: Abacus.AI CLI <agent@abacus.ai>
9 lines
933 B
TypeScript
9 lines
933 B
TypeScript
import type { Selector } from "css-what";
|
|
import type { CompiledQuery, InternalOptions, CompileToken, Adapter } from "../types.js";
|
|
/** Used as a placeholder for :has. Will be replaced with the actual element. */
|
|
export declare const PLACEHOLDER_ELEMENT: {};
|
|
export declare function ensureIsTag<Node, ElementNode extends Node>(next: CompiledQuery<ElementNode>, adapter: Adapter<Node, ElementNode>): CompiledQuery<Node>;
|
|
export 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>;
|
|
export declare function getNextSiblings<Node, ElementNode extends Node>(elem: Node, adapter: Adapter<Node, ElementNode>): ElementNode[];
|
|
export declare const subselects: Record<string, Subselect>;
|
|
//# sourceMappingURL=subselects.d.ts.map
|