新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
10 lines
959 B
TypeScript
10 lines
959 B
TypeScript
import { CompileToken } from "./../types";
|
|
import type { Selector } from "css-what";
|
|
import type { CompiledQuery, InternalOptions, Adapter } from "../types";
|
|
/** 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
|